99网
您的当前位置:首页Java 实现文件写入

Java 实现文件写入

来源:99网
  • 文件找到:会覆盖原来的文件内容并写入写的内容
  • 文件未找到:直接创建一个新的文件,并写入内容

3. 通过 OutputStreamWriter 对象操作
4. 通过 write() 方法向文件中写入内容
5. 最后释放流

		String filePath = System.getProperty("user.dir");
        String path = filePath + "/测试文件.txt";
        System.err.println("要写入的文件路径为:" + path);
        FileOutputStream os = null;
        Writer writer = null;
        try {
            os = new FileOutputStream(new File(path));
            writer = new OutputStreamWriter(os, StandardCharsets.UTF_8);
            // 写入文件内容
            writer.write("我是 2020/9/24 14:15:26 秒写入的内容");
            System.out.println("文件写入成功");
        } catch (Exception e) {
            e.printStackTrace();
            System.err.println(e.getMessage());
        } finally {
            try {
                if (writer != null) {
                    writer.close();
                }
                if (os != null) {
                    os.close();
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }

因篇幅问题不能全部显示,请点此查看更多更全内容