我有这个功能:
public static int checkRank(String lineToCompare){
int rank = 0;
try{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("ranks.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
//Read File Line By Line
System.out.println("SPOT 0");
while ((strLine = br.readLine()) != null) {
//Compare the line with the line to compare (string)
System.out.println("SPOT 1");
if(strLine.trim().equals(lineToCompare)) {
//I found it! Read the next line...
final String lineAfter = br.readLine();
rank = Integer.parseInt(lineAfter);
System.out.println("SPOT 2");
}else{
rank = 0;
System.out.println("SPOT 3");
}
}
//Close the input stream
in.close();
}catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
System.out.println("Username: " + lineToCompare + " | Rank: " + rank);
return rank;
}
我的ranks.txt
文件如下:
test1
2
test2
1
控制台输出(“SPOT”仅用于调试):
[Commands] SPOT 0
[Commands] SPOT 1
[Commands] SPOT 2
[Commands] SPOT 1
[Commands] SPOT 3
[Commands] SPOT 1
[Commands] SPOT 3
[Commands] Username: test1 | Rank: 0
如您所见,如果它工作正常,它会说 test1 的排名为 2。有人可以帮我确定问题吗?