我有一个动态的大文件,我想检查一个布尔值然后如果它是真的,得到一个东西
请帮帮我
例如这是我的文件(它可能有20000行)
.
.
.
fsfds fdsfsdf gfhgfh value1=true fdsfd fdfdsr ewref
dfdfsd dsfds dfdf fdsfsd
dfdfsd dsfds myval dfdf fdsfsd
dfdfsd dsfds dfdf fdsfsd
dfdfsd dsfds myval dfdf fdsfsd
fdfdfddsfds
fdfdsfdfdsfdfdsfsdfdsfdsfdsfds
.
.
.
我写了这段代码来处理它,但我不能,因为在这种情况下我读逐行,我必须检查value1是否为真然后在2行后我必须计算myval ...
public void countMethod() {
int i = 0; //count
try {
BufferedReader input =
new BufferedReader(new FileReader(new File("I:\\1.txt")));
String line;
while ((line = input.readLine()) != null) {
if (line.substring(line.indexOf("value1")).split("=")[1].equals("true")) {
if (line.indexOf("myval") != -1)
i++;
}
}
input.close();
}
catch (Exception e) {
e.printStackTrace();
}
System.out.println("Count is : " + i);
}
我如何检查条件,如果确实如此,我会计算我的数量?
非常感谢
答案 0 :(得分:1)
如果您只想传阅一个文件,只需检查每一行并检查其myval
的数量以及是否有value1 = true
。您会知道myval
的计数是多少,但除非value1
为真,否则您无需报告。
答案 1 :(得分:0)
尝试:
boolean found = false;
while ((line = input.readLine()) != null) {
if (!found)
found=line.substring(line.indexOf("value1")).split("=")[1].equals("true");
if (found && line.indexOf("myval") != -1)
i++;
}