如何使用Java创建文件夹(使用Eclipse Kepler?)?

时间:2014-03-24 03:51:44

标签: java eclipse file directory

我正在寻找一种使用Eclipse Kepler创建文件夹的方法。我刚刚开始学习这个,所以请原谅我可能表现出的任何无知;我不经常将 Java 应用于名为Minecraft的游戏插件以外的程序。到目前为止,我知道文件是可创建的(使用我的代码)文件夹,如果文件夹存在,但程序不会自动创建文件夹,就像在指定文件夹时生成的文件一样存在。 这是我到目前为止的代码:

package me.pookeythekid.filetests;
import java.io.BufferedWriter;
import java.io.FileWriter;

public class Main {
    public static void main(String[] args) {
        try {
            FileWriter fw = new FileWriter("C:\\Users\\Luke\\Desktop\\Folder\\Test.txt");
            BufferedWriter bw = new BufferedWriter(fw);
            bw.write("Hello World!");
            bw.close();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

1 个答案:

答案 0 :(得分:1)

文件示例:

        File file = new File("C:/file.txt");
        String content = "hello world";

        try (FileOutputStream fop = new FileOutputStream(file)) {


            if (!file.exists()) {
                file.createNewFile();
            }


            byte[] contentInBytes = content.getBytes();

            fop.write(contentInBytes);
            fop.flush();
            fop.close();


        } catch (IOException e) {
            e.printStackTrace();
        }

文件夹示例:

File file = new File("C:\\Folder");
if (!file.exists()) {
    file.mkdir();           
}