Java怎么指定文件里搜索关键字
发布网友
发布时间:2022-04-23 03:17
我来回答
共3个回答
热心网友
时间:2023-08-19 02:53
得看你的文件的格式了。
如果你文件的格式是每行一个 姓名,电话,个人信息 这样的,那么就会特别简单。
步骤:
读取文件,按行读取 readline
检查这一行是否有 你需要的电话号码,有解析这行的姓名和个人信息。
热心网友
时间:2023-08-19 02:53
public static void readTxtFile(String filePath, String key){
try {
String encoding="GBK";
File file=new File(filePath);
if(file.isFile() && file.exists()){ //判断文件是否存在
InputStreamReader read = new InputStreamReader(
new FileInputStream(file),encoding);//考虑到编码格式
BufferedReader bufferedReader = new BufferedReader(read);
String lineTxt = null;
while((lineTxt = bufferedReader.readLine()) != null){
System.out.println(lineTxt.indexOf(key));
}
read.close();
}else{
System.out.println("找不到指定的文件");
}
} catch (Exception e) {
System.out.println("读取文件内容出错");
e.printStackTrace();
}
热心网友
时间:2023-08-19 02:54
用正则表达式