嘿,我对这个简单的程序有问题:
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类似的问题。解决计数行数的方法与我的类似。我不明白为什么它不起作用...... 感谢
答案 0 :(得分:1)
根据您提供的代码,您似乎正在打印line
而不是lines
。
计数代码看起来正确。