我有以下情况:我试图循环ArrayList
并将每个元素与HashTable
进行比较。如果元素(字符串)相等,我想将其复制到新的HashTable
neu 中。直到这里它还顺利。
但是我希望,如果这个词已经在新的HashTable
neu 中,那么就不要再添加它了,只需在表示频率的值中添加一个计数。
我想在此代码中永远不会达到else-block,因为 test 输出它从未显示过。
我知道,在contentEquals
它运作良好之前,它会返回所有相同的单词。
那么:如何验证字符串是否已经在HashTable
中?我希望它没有重复,我已经看到了很多类似的问题,但我不知道如何正确地使用它来代码。
Hashtable<String, Long> neu = new Hashtable<String, Long>();
ArrayList<String> words = new ArrayList<String>();
Hashtable<String, Long> count = new Hashtable<String, Long>();
// adding input
for (String s : count.keySet()) {
for (String x : words) {
if (x.contentEquals(s)) {
if (!neu.containsKey(s)) {
neu.put(s, (long) 1);
} else {
long p = neu.get(s);
p = p + 1;
neu.put(s, p);
System.out.println("test");
}
}
}
输入如下: 对于计数:
try {
BufferedReader in = new BufferedReader(new FileReader(
"griechenland_test.txt"));
String str;
while ((str = in.readLine()) != null) {
str = str.toLowerCase(); // convert to lower case
String[] words = str.split("\\s+"); // split the line on
// whitespace, would return
// an array of words
for (String word : words) {
if (word.length() == 0) {
continue;
}
Long occurences = wordcount.get(word);
if (occurences == null) {
occurences = (long) 1;
} else {
occurences++;
}
count.put(word, occurences);
}
}
单词:
BufferedReader br = new BufferedReader(new FileReader("outagain.txt"));
for (String line = br.readLine(); line != null; line = br.readLine()) {
String h[] = line.split(" ");
words.add(h[0].toString());
}
答案 0 :(得分:0)
使用containsKey()
方法检查给定密钥是否已存在于哈希表中。
static Hashtable<String, Long> map = new Hashtable<String, Long>();
public static void main(String[] args)
{
map.put("test", 1l);
System.out.println(map.containsKey("test")); // true
}
对于字符串比较,请使用equals(Object)
或equalsIgnoreCase(String)
方法。
所以你的代码应该是这样的......
for (String s : count.keySet())
{
for (String x : words)
{
if (x.equals(s))
neu.put(s, neu.containsKey(s) ? neu.get(s) + 1 : 1l);
}
}
请验证words
和count
的内容。这应该是问题,因为您的代码工作正常。
答案 1 :(得分:0)
我可以管理它!我认为错误确实是从输入的方式,那里没有重复,因此&#34;否则&#34;永远不会到达!我只是消除了这个条件并改变了一点结构。 无论如何,谢谢你的努力! :)
for (String x : hash.keySet()) {
long neu = hash.get(x);
for (String s : words) {
if (x.equals(s)) {
neuS.add(x);
neuZ.add(neu);
disc = disc + 1;
}
}
}