我一直在尝试通过在我的数据库中选择带有filechooser的文件来导入csv文件(包含空字段)。使用filechooser很重要,因为它是学校使用的程序,他们希望能够通过导入他们拥有的excel / csv文件每年导入他们的新学生记录。每当我运行下面给出的代码时,我都会收到以下错误:
SEVERE: null
java.lang.NullPointerException
at gui.FXMLStudentController$1.run(FXMLStudentController.java:86)
at java.lang.Thread.run(Thread.java:745)
我认为问题很明显。如何在没有错误的情况下使其正常工作?
导入类:
public class ImportStudents
{
private File file;
private List<Student> students = new ArrayList<>();
public ImportStudents(File file) throws IOException
{
this.file = file;
}
public List importStudents() throws FileNotFoundException, IOException
{
try(CSVReader reader = new CSVReader(new FileReader(file), ';'))
{
String[] nextLine;
boolean notFirst = false;
while ((nextLine = reader.readNext()) != null) {
if (notFirst) {
students.add(new Student(nextLine[3], nextLine[1], nextLine[0],nextLine[2]));
}
notFirst = true;
}
}catch(Exception e)
{
e.printStackTrace();
}
return students;
}
}
按下导入按钮时GUI中的代码:
@FXML
private void importeer(ActionEvent event)
{
Stage stage = new Stage();
ImportStudents = importStudents; //importStudents created earlier in the class
FileChooser fileChooser = new FileChooser();
fileChooser.setTitle("Open File");
try
{
importStudents = new ImportStudents(fileChooser.showOpenDialog(stage));
new Thread(new Runnable() {
@Override
public void run()
{
try
{
repository.importStudents(importStudents.importeerLeerlingen());
}
catch(Exception e)
{
Logger.getLogger(Controller.class.getName()).log(Level.SEVERE, null, e);
}
}
}).start();
}
catch(Exception e)
{
}
}
存储库中的代码:
public void importStudents(List<Student> students)
{
try{
em.getTransaction().begin();
for (Student : students)
{
em.persist(student);
}
em.getTransaction().commit();
}
finally
{
em.close();
}
}
来自csv文件的示例我尝试以这种方式导入: 正如你所看到的那样,电子邮件大部分时间都是空的(这是针对幼儿园的学校),但对于某些人来说,它是给出的。
SurName;Name;E-mail;Class
Agacseven;Tuana;;3KA
Ahmedov;Arman;;2KC
Akcan;Efe;;3KA
Akcan;Hanzade;;2KC
Akhtar;Hussain;;1KA
学生构造函数看起来像这样
public Student(String class, String name, String surNaam, String email)
{
this.class = class;
this.name = name;
this.surNaam = surNaam;
this.email = email;
}
答案 0 :(得分:0)
Student构造函数如何显示?如果在分隔符之间没有任何内容,我很难在javadocs中找到值readNext()放入字符串引用的内容。它可以是空字符串或null(它似乎是)。在这种情况下,您在Student构造函数中使用该值执行的操作可能与null值不合法。
修改强>
如果是这种情况你可以在构造函数中处理null值的传递,或者写一个类似的静态方法:
public static String Convert(String str) {
return str == null ? "" : str;
}
当实例化学生时:
new Student(Convert(nextLine[3]), ... );