栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

java读取txt文件代码片段

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

java读取txt文件代码片段

本文实例为大家分享了java读取txt文件的具体代码,供大家参考,具体内容如下

学习小记:

  1、首先要根据路径获取你的 txt 文本文件。File file = new File(path);

  2、将获取到的这个字节码流读进缓存。new FileInputStream(file) ;

  3、然后对刚才读进缓存的输入流进行解读,生成对应字节流。InputStreamReader(readIn)

  4、再然后通过 BufferedReader 这个类进行一行一行的输出。bufferedReader.readLine()

代码:

public static void ReadTxt () {
 try { 
  File file = new File("E:\text.txt");
  FileInputStream readIn = new FileInputStream(file);
  InputStreamReader read = new InputStreamReader(readIn, "utf-8");
  BufferedReader bufferedReader = new BufferedReader(read);
  String oneLine= null;
  while((oneLine= bufferedReader.readLine()) != null){
    System.out.println(lineTxt);
  }
  read.close();
 } catch (Exception e) {
  System.out.println("读取文件内容出错");
  e.printStackTrace();
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/146365.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号