如何创建编号列表

时间:2019-07-30 23:29:30

标签: java list numbered-list

我想创建一个编号列表,其中在每行旁边显示索引号。我不太确定该如何实现。

这是我创建列表的代码:

public void readFile(Scanner in)
{
    inputStudentID = null;
    inputMark = 0;

    try
    {
        File file = new File("Marks.txt");
        in = new Scanner(file);
    }
    catch (FileNotFoundException e)
    {
        System.out.println(e.getMessage());
        System.out.println("in " + System.getProperty("user.dir"));
        System.exit(1);
    }
    while (in.hasNextLine())
    {
        String studentRecord = in.nextLine();
        List<String> values = Arrays.asList(studentRecord.split(","));
        String inputStudentID = values.get(0);
        String sInputMark;
        sInputMark = values.get(1);
        int inputMark = Integer.parseInt(sInputMark);
        addStudent(inputStudentID, inputMark);
    }
    in.close();
}

0 个答案:

没有答案