好友
阅读权限10
听众
最后登录1970-1-1
|
今天需要正好解析一个Txt文档,就顺手写了一个小demo,给大家分享一下
[mw_shl_code=java,true]package com.rungkong.sj;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
/**
* @AuThor 寒冰haya
* @date 2020/3/13 09:14
*/
public class readData {
/**
* @author 寒冰haya
* @description 按行读取文件
*/
public static List read() throws FileNotFoundException {
// 文件所在位置
File file = new File("D:\\2020.02.txt");
FileInputStream fis = new FileInputStream(file);
InputStreamReader isr = null;
try {
isr = new InputStreamReader(fis,"GBK");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
BufferedReader bufferedReader = new BufferedReader(isr);
StringBuilder stringBuilder =new StringBuilder();
List<String> strings =new ArrayList<>();
String str=null;
while (true) {
try {
//判断是否空
if (!((str=bufferedReader.readLine())!=null)) break;
} catch (IOException e) {
e.printStackTrace();
}
if (str.trim().length()>2) {
|
-
-
需要解析的文档
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|