文件内容过滤
Posted 猪八戒1.0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件内容过滤相关的知识,希望对你有一定的参考价值。
我们编写的程序需要将文件中的英文过滤掉,保留文件中的中文内容。
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
public class Filter
public static void main(String[] args)
FileReader fr = null;
String str = null;
try
fr = new FileReader("src//text.txt");
char[] car = new char[1024];
int len = 0;
while ((len = fr.read(car)) != -1)
str = new String(car, 0, len);
str = str.replaceAll("[a-zA-Z]", "");
System.out.println(str);
//把数据写到外存
FileOutputStream out = new FileOutputStream("src//出师表.txt");
out.write(str.getBytes());
fr.close();
out.close();
catch (IOException e)
throw new RuntimeException(e);
以上是关于文件内容过滤的主要内容,如果未能解决你的问题,请参考以下文章
第三百七十五节,Django+Xadmin打造上线标准的在线教育平台—创建课程机构app,在models.py文件生成3张表,城市表课程机构表讲师表