1

我正在尝试将一组单词打印到 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

我正在尝试删除空格的顶部条目,我认为检查键是否不是空格的语句会起作用,但它仍在打印空格。任何帮助表示赞赏。谢谢。

4

1 回答 1

0

您的条件将仅消除单个空格键。如果要消除任意数量的空格,请使用:

if (!me.getKey().trim().isEmpty()) {
    ...
}

这是假设me.getKey()不能为空。

于 2016-05-04T05:57:17.007 回答