将文本文件数据添加到Derby数据库

时间:2014-06-07 19:49:14

标签: java

我有从文本文件中读取数据并将其与hastags分开的代码。数据当前存储在一个数组中。 我也在Netbeans上使用Derby数据库,所以我的问题是,现在数据是分开的,我如何将这些数据插入我的Derby数据库。

在文本文件中输入数据:

569#Chandini#Singh#58#24#89     
425#Angel#Dan#67#58#26     
780#Red#Velvet#48#21#10

需要插入Derby数据库的输入数据(分割hastags之后):

569 Chandini Singh 58 24 89     
425 Angel Dan 67 58 26      
780 Red Velvet 48 21 10

这是我写的当前插入代码:

     Studenttbl std = new Studenttbl();
     std.setStudentid(Short.parseShort(Id.getText()));
     std.setName(name.getText());
     std.setSurname(surname.getText());
     std.setIt(Integer.parseInt(it.getText()));
     std.setPhysics(Integer.parseInt(physics.getText()));
     std.setMaths(Integer.parseInt(math.getText()));

     StudyDBPUEntityManager.getTransaction().begin();
     StudyDBPUEntityManager.persist(std);
     StudyDBPUEntityManager.getTransaction().commit();

     studenttblList.clear();
     studenttblList.addAll(studenttblQuery.getResultList());

     iterator = studenttblList.listIterator(0);
     setStudents(iterator.next());

     System.out.println("Inserted");

此代码目前从textFields插入。

由于

0 个答案:

没有答案