程序不适合循环

时间:2019-05-17 23:20:12

标签: java

当我在此处执行此代码时,我正在等待结果显示在文本文件中,但是我只能在控制台中获得结果,而在目的地中只能得到一个空文本文件

for (HashMap.Entry<String, Double> entry : thresholdMap.entrySet()) { 
    System.out.println("Similarities for "+entry.getKey() + " threshold with value " + entry.getValue());
    BufferedWriter buffWriter = new BufferedWriter(new FileWriter(new File(outputDirPath+entry.getValue())));

...

0 个答案:

没有答案