我的程序正在創建文件,我需要把它們放在一個特定的文件夾中。不確定的過程。由於如何將文件添加到我的文件夾? java
String path = "C:\\Users\\Blah\\Desktop\\blahblah\\FOLDER";
File bfFolder = new File (path);
bfFolder.mkdir();
for (int a = 0; a < 20; a++) {
try (DataOutputStream dataO = new DataOutputStream(new FileOutputStream("file" + " a"))) {
'FileOutputStream(new File(file,「a」))'...我還會檢查bfFolder.mkdir的結果,看看目錄是否正確,並檢查它是否存在... – MadProgrammer
所以你把文件,我應該輸入(新的FileOUtputStream(文件夾,「文件」+「a」))? – CPUSCIMAJOR
由於我創建的文件夾被命名爲FOLDER(路徑) – CPUSCIMAJOR