1

我有这个功能:

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。有人可以帮我确定问题吗?

4

2 回答 2

1

您在最后一个循环迭代中rank覆盖。0

break;击中时使用跳出循环。

于 2012-05-15T00:37:51.407 回答
1

您应该添加一个休息时间;在打印出“SPOT 2”以结束 while 循环的行之后的语句。

如果没有中断,则在读取“test2”行时将排名设置为 0,然后在读取“1”行时将排名设置为 0(while 循环一直持续到文件末尾)。

于 2012-05-15T00:39:59.533 回答