2

我有一个逗号分隔的文本文件,其中包含以下格式的信息:

firstname,lastname,meal1,meal2,meal3,meal4 ....每个新学生都换一行。

我有以下学生对象。

public class Student {
    private String first = null;
    private String last = null;

    public Student (String first, String last){
        this.first = first;
        this.last = last;
    }

我需要一个从另一个类中使用的方法来填充一个学生对象数组。

我不确定如何使用扫描仪执行此操作,因为我只需要每行的前两个,任何帮助我指向正确方向的帮助将非常感激。

~谢谢!

4

2 回答 2

5
  try {
        File file = new File("input.txt");
        Scanner scanner = new Scanner(file);

        while (scanner.hasNextLine()) {                
            String line = scanner.nextLine();
            String array[] = line.split(",");
            Student student  = new Student (array[0],array[1]);
            -------------------------
            -------------------------
            System.out.println("FirstName:"+ array[0]);
            System.out.println("LastName:"+ array[1]);
        }
        scanner.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
    }
于 2013-09-26T09:16:20.020 回答
0

作为提示,我可以向您发布如何使用扫描仪从文件中读取行的代码。然后你可以解析一行。试着自己做这件事。祝你好运。

    Scanner s = null;
    try {
        s = new Scanner(new BufferedInputStream(new FileInputStream("Somefile.txt")));
        while (s.hasNextLine()){
            String line = s.nextLine(); //String line representation from file 
    } finally {
        if (s != null) s.close();
    }
于 2013-09-26T09:13:58.710 回答