正如标题所说,我正在寻找一个简短的函数,如果有特定的字符串,它会在文件中读取,并且//如果存在则做一些事情。例如,如果在 test.txt 文件中存在字符串 TestString。有人会那么好心地建议我一个方法吗?
问问题
1493 次
1 回答
1
InputStream is = //--open an input stream from file--
BufferedReader rd = new BufferedReader(new InputStreamReader(is,"UTF-8"));
String line;
while ( (line = rd.readLine()) != null ){
if(line.matches(".*TestString.*")){ //--regex of what to search--
//--do something---
break; //--if not want to search further--
}
}
于 2013-01-27T05:19:02.963 回答