java代码读取txt文件_java读取txt文件

packagecom.thinkgem.wlw.modules.midea;import java.io.*;importjava.util.ArrayList;importjava.util.List;/*** @Author: zhouhe

* @Date: 2019/6/19 8:48*/

public classTest {public static voidmain(String[] args) {//文件夹路径

String path = "D:\\input.txt";try{

List scanListPath =readFile02(path);//System.out.println(scanListPath);

for (int i = 0; i < scanListPath.size(); i++) {

String mytext=scanListPath.get(i);//替换所有制表符

mytext = mytext.replaceAll("\t",",");

System.out.println(mytext);//每一行都转化为新的数组,根据下标去判断参数值对应的参数是什么

String [] strArr= mytext.split(","); //注意分隔符是需要转译

for (int m = 0; m < strArr.length; m++) {//System.out.println(strArr[m]);

switch(m){case 0:

System.out.println("时间:"+strArr[m]);break;case 1:

System.out.println("甲烷:"+strArr[m]);break;case 2:

System.out.println("总烃:"+strArr[m]);break;case 3:

System.out.println("非甲烷总烃:"+strArr[m]);break;case 4:

System.out.println("氨气:"+strArr[m]);break;case 5:

System.out.println("硫化氢:"+strArr[m]);break;case 6:

System.out.println("氧气:"+strArr[m]);break;default:break;

}

}

}

}catch(IOException e) {

System.out.println("有异常,无法读取!!!");

}

}/*** 读取一个文本 一行一行读取

*

*@parampath

*@return*@throwsIOException*/

public static List readFile02(String path) throwsIOException {//使用一个字符串集合来存储文本中的路径 ,也可用String []数组

List list = new ArrayList();

FileInputStream fis= newFileInputStream(path);//防止路径乱码 如果utf-8 乱码 改GBK eclipse里创建的txt 用UTF-8,在电脑上自己创建的txt 用GBK

InputStreamReader isr = new InputStreamReader(fis, "UTF-8");

BufferedReader br= newBufferedReader(isr);

String line= "";while ((line = br.readLine()) != null) {//如果 t x t文件里的路径 不包含---字符串 这里是对里面的内容进行一个筛选

if (line.lastIndexOf("---") < 0) {

list.add(line);

}

}

br.close();

isr.close();

fis.close();returnlist;

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值