我试图将一组单词打印到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
我正在尝试删除空格的顶部条目,我认为该语句检查密钥是否有空格可以工作但是它仍然是打印空间。任何帮助表示赞赏。感谢。
答案 0 :(得分:0)
您的情况将仅消除单个空格键。如果要消除任意数量的空格,请使用:
if (!me.getKey().trim().isEmpty()) {
...
}
这假设me.getKey()
不能为空。