如何从Java中的文本文件中跳过某些行?
2022-09-04 21:46:06
我目前正在学习Java,我遇到了这个问题,我想加载一个由大量行组成的文件(我正在逐行读取文件),我想做的是跳过某些行(伪代码)。
the line thats starts with (specific word such as "ABC")
我已尝试使用
if(line.startwith("abc"))
但这并没有奏效。我不确定我是否做错了,这就是为什么我在这里寻求帮助,在加载函数的一部分下面:
public String loadfile(.........){
//here goes the variables
try {
File data= new File(dataFile);
if (data.exists()) {
br = new BufferedReader(new FileReader(dataFile));
while ((thisLine = br.readLine()) != null) {
if (thisLine.length() > 0) {
tmpLine = thisLine.toString();
tmpLine2 = tmpLine.split(......);
[...]