我正在读取整个文件,如果它包含特定字符串,我想使用该行。我无法使用该字符串,因为它null
在 while 循环之外打印,尽管我已经在循环之外对其进行了初始化。
FileInputStream wf = new FileInputStream(pr.getSplitDir() + listfiles[i]);
BufferedReader wbf = new BufferedReader(new InputStreamReader(wf));
String wfl = "";
while ((wfl = wbf.readLine()) != null) {
if (wfl.contains("A/C NO:")){
// System.out.println(wfl); // Here it is Printing the correct line
}
}
System.out.println(wfl); // Here it is printing null
请帮忙。