本文主要讲述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 + " 文件失败"); } } }
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/98954.html