gpt4 book ai didi

java - 计算 .txt 文件 Java 中的行数

转载 作者:行者123 更新时间:2023-12-01 13:10:50 24 4
gpt4 key购买 nike

嘿,我对这个简单的程序有疑问:

package werd;

import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;


public class Werd {

/**
* @param args the command line arguments
*/
public static void main(String[] args) throws FileNotFoundException, IOException {


BufferedReader in = new BufferedReader(
new InputStreamReader(new FileInputStream("ikso.txt"), "UTF-8"));

String line;
String[] tmp = null;
int slowa = 0;
int lines = 0;

while ((line = in.readLine())!= null){

lines++;
tmp = line.split("\\s");
System.out.println(line);
//System.out.println(line);

for(String s : tmp){
slowa++;
}
}
in.close();

System.out.println("Liczba wierszy to " +line+" a liczba slow w tekscie to " + slowa)

}


}

问题是变量计数没有增加。此外,Netbeans 告诉我没有使用变量限制。我在本页上浏览过与 min 类似的问题。解决计算行数的方法与我的类似。我不明白为什么它不起作用......谢谢

最佳答案

从您提供的代码来看,您似乎正在打印 line 而不是 lines

计数代码看起来正确。

关于java - 计算 .txt 文件 Java 中的行数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22884458/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com