package com.zinc.util;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class textUtil {
public static String[] parser(String filepath) {
String [] wordCensor = {};
String encoding="UTF-8";
// filepath = "E://keywords.txt";
File filein=new File(filepath);
String content="";
if(filein.exists()){
BufferedReader bufferedReader;
try {
InputStreamReader read = new InputStreamReader (new FileInputStream(filein),encoding);
bufferedReader = new BufferedReader(read);
String c=bufferedReader.readLine();
while(c!=null){
content+=c;
c=bufferedReader.readLine();
}
bufferedReader.close();
// System.out.println(content);
wordCensor = content.split(",");
// for(int i=0; i<wordCensor.length; i++){
// System.out.println(i + " " + wordCensor[i]);
// }
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
return wordCensor;
}
public static void main(String[] args) {
textUtil.parser("E://keywords.txt");
}
}
读取text,并没有乱码
原创
©著作权归作者所有:来自51CTO博客作者hongmin118的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:el 表达式 判断 奇偶行 变色
下一篇:删除 svn 文件的注册表
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Linux删除乱码文件
Linux删除乱码文件
特殊字符 上传 删除操作 -
mmap其实并没有那么好
现网问题关于mmap的基本操作自行google去吧, 一抓一大把,99%基本上夸mmap是
mmap linux ios 用户态 读取文件