我正在尝试将一组单词打印到 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
我正在尝试删除空格的顶部条目,我认为检查键是否不是空格的语句会起作用,但它仍在打印空格。任何帮助表示赞赏。谢谢。