嘿,所以我現在有這個代碼的問題:有更多的代碼到這一點,但這個是我需要幫助塊]Java的目錄搜索 - 文本文件作家 - 只有1結果顯示
File fe = new File("C:\\Users\\" + System.getProperty("user.name") + "\\desktop" + "\\SearchResults.txt");
String customLoca = "C:\\Users\\" + System.getProperty("user.name") + "\\desktop";
File dir = new File(customLoca);
for (File f : dir.listFiles()){
if (f.getName().contains(".jar"))
if (f.getName().endsWith(".jar"))
try{
FileWriter fw = new FileWriter(fe);
fw.write("[!]Found: " + f.getName() + "[!]");
fw.write("\r\n");
fw.write("[!]Found: " + f.getName() + "[!]");
fw.close();
}catch(Exception ex){
}
}
}
}
我希望它打印所有的結果但只打印1
https://gyazo.com/406ab3039f3efa8f72d3dfff5732c088
你知道一種方法,我可以把它所以它打印所有的結果?謝謝。
現在說斜面決心FW給一個變量https://gyazo.com/d86cf59dfff420c0247aff86bb0a72fb – harry
現在說斜面決心FW給一個變量 – harry
把'FileWriter的FW =新的FileWriter(FE);'外供循環。 – Derin