Java读取txt文件和写入txt文件
Posted fanyixiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java读取txt文件和写入txt文件相关的知识,希望对你有一定的参考价值。
直接上代码
package com.example.demo1; import java.io.*; public class ReadandWrite { public static void main(String args[]) { readFile(); writeFile(); } /** * 读入TXT文件 */ public static void readFile() { String pathname = "D:\微信\fyx.txt"; // 绝对路径或相对路径都可以,写入文件时演示相对路径,读取以上路径的input.txt文件 //防止文件建立或读取失败,用catch捕捉错误并打印,也可以throw; //不关闭文件会导致资源的泄露,读写文件都同理 //Java7的try-with-resources可以优雅关闭文件,异常时自动关闭文件;详细解读https://stackoverflow.com/a/12665271 try (FileReader reader = new FileReader(pathname); BufferedReader br = new BufferedReader(reader) // 建立一个对象,它把文件内容转成计算机能读懂的语言 ) { String line; //网友推荐更加简洁的写法 while ((line = br.readLine()) != null) { // 一次读入一行数据 System.out.println(line); } } catch (IOException e) { e.printStackTrace(); } } /** * 写入TXT文件 */ public static void writeFile() { try { File writeName = new File("D:\微信\fyx.txt"); // 相对路径,如果没有则要建立一个新的output.txt文件 writeName.createNewFile(); // 创建新文件,有同名的文件的话直接覆盖 try (FileWriter writer = new FileWriter(writeName); BufferedWriter out = new BufferedWriter(writer) ) { out.write("我会写入文件啦1 "); // 即为换行 out.write("我会写入文件啦2 "); // 即为换行 out.flush(); // 把缓存区内容压入文件 } } catch (IOException e) { e.printStackTrace(); } } }
以上是关于Java读取txt文件和写入txt文件的主要内容,如果未能解决你的问题,请参考以下文章