我正试图将一组单词打印到CSV文件中,并试图避免将空格打印为单词。
static TreeMap<String,Integer> wordHash = new TreeMap<String,Integer>();
Set words=wordHash.entrySet();
Iterator it = words.iterator();
while(it.hasNext()) {
Map.Entry me = (Map.Entry)it.next();
System.out.println(me.getKey() + " occured " + me.getValue() + " times");
if (!me.getKey().equals(" ")) {
ps.println(me.getKey() + "," + me.getValue());
}
}
每当我打开CSV,以及在控制台中,输出都是:
1
10 1
a 4
test 2
我正试图删除空格的顶部条目,我认为检查键是否不是空格的语句会起作用,但它仍在打印空格。感谢您的帮助。谢谢
您的条件将只消除单个空格键。如果你想消除任何数量的空格,请使用:
if (!me.getKey().trim().isEmpty()) {
...
}
这是假设me.getKey()
不能为null。