我有员工记录。六个字段长,例如
private String name;
private String id;
private double salary;
我需要从包含 18 行数据的 .txt 文件中读取三个不同员工(每位员工 6 行)的原始数据,并将数据放入特定的员工记录中。到目前为止,这就是我的主要方法中的内容:
public static void main(String[] args)
{
//employee declarations
Employee e1 = new Employee();
Employee e2 = new Employee();
Employee e3 = new Employee();
int count = 0;
int emp_count = 0;
File in_file = new File("EmployeeData.txt");
Scanner fscan = new Scanner(in_file);
while(fscan.hasNext())
{
e1.set_name
不太确定如何从 txt 文件中获取适当的数据行到员工记录中的相应插槽中。有什么建议么?