亲宝软件园·资讯

展开

java读取txt文件内容 JAVA实现读取txt文件内容的方法

xingoo 人气:11
想了解JAVA实现读取txt文件内容的方法的相关内容吗,xingoo在本文为您仔细讲解java读取txt文件内容的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:java读取txt文件内容,用java读取txt文件,java,读取txt文件,下面大家一起来学习吧。

通常,我们可以直接通过文件流来读取txt文件的内容,但有时可能会出现乱码!此时只要设置一下文件字符编码即可。

public class txttest {
  /**
   * 读取txt文件的内容
   * @param file 想要读取的文件对象
   * @return 返回文件内容
   */
  public static String txt2String(File file){
    StringBuilder result = new StringBuilder();
    try{
      BufferedReader br = new BufferedReader(new FileReader(file));//构造一个BufferedReader类来读取文件
      String s = null;
      while((s = br.readLine())!=null){//使用readLine方法,一次读一行
        result.append(System.lineSeparator()+s);
      }
      br.close();  
    }catch(Exception e){
      e.printStackTrace();
    }
    return result.toString();
  }
  
  public static void main(String[] args){
    File file = new File("D:/errlog.txt");
    System.out.println(txt2String(file));
  }
}

读取文件效果:

加载全部内容

相关教程
猜你喜欢
用户评论