本文主要讲述java如何创建文件夹和文件

题目:指定路径,判断当前路径是否有目标文件夹,如果没有,则创建;如果有,在目标文件夹下创建目标文件【txt文件】,并使用转换流 + 处理流写入数据。

public class HomeWork01 {
    public static void main(String[] args) throws IOException {
        String dirPath = "F:\\韩顺平java基础笔记\\java图片\\hsp";
        File dir = new File(dirPath);
        if(!dir.exists()){
            // 创建多级目录
            dir.mkdirs();
            System.out.println("创建" + dirPath + "文件夹成功");
        }else{
            System.out.println("创建" + dirPath + "文件夹失败");
        }

        String filePath = dirPath + "\\hello.txt";
        File file = new File(filePath);
        if(!file.exists()){
            // 创建指定文件
            file.createNewFile();
            System.out.println("创建" + filePath + "文件成功");
            // 使用转换流,写入数据
            // 将指定字符集的字节流,转换成字符流
            OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(filePath), "utf-8");
            // 使用字符流包装的处理流,写入数据
            BufferedWriter bufferedWriter = new BufferedWriter(osw);
            bufferedWriter.write("hello world 韩顺平教育");

            bufferedWriter.close();

        }else{
            System.out.println("创建" + filePath + " 文件失败");
        }


    }
}