我对 Java 还是很陌生,我正在开发一个类项目,我不确定如何编写程序来获取 userInput(fileName) 并从中创建一个新对象。我的指示是编写一个程序,该程序从用户读取文件名,然后从该文件中读取数据,创建对象(类型 StudentInvoice)并将它们存储在 ArrayList 中。
这就是我现在的位置。
public class StudentInvoiceListApp {
public static void main (String[] args) {
Scanner userInput = new Scanner(System.in);
String fileName;
System.out.println("Enter file name: ");
fileName = userInput.nextLine();
ArrayList<StudentInvoice> invoiceList = new ArrayList<StudentInvoice>();
invoiceList.add(new StudentInvoice());
System.out.print(invoiceList + "\n");
}