0

我有一个名为 patientlist 的文本文件,如下所示:

    george  19  180 75
    paul    20  182 84
    laura   21  176 73

我想要做的是读取这个文件并将这些行添加到 mysql 数据库中的表中。我写了这段代码来读取文件:

    public static void patients() throws IOException{
    try {
        in= new BufferedReader(new FileReader(new File("patientlist.txt")));
    }
    catch (FileNotFoundException e) {System.out.println("There was a problem: " + e);}
    while((read = in.readLine()) != null){
        System.out.println(read);
     }
    }

“读取”是文件中的值。我想将这些值插入到我的数据库中的表中,该表具有参数(姓名、年龄、身高、体重),每行有 4 个值。我不知道如何分隔一行中的值。因为我希望 george、paul 和 laura 在数据库等的 name 参数下,所以我将来可以使用 select?谢谢您的帮助!

我已经写了一些这样的代码,你可以检查一下吗?

     public static void main(String[] args) throws IOException {

    PreparedStatement preparedstatement = null;
    Connection connection = DBConnection();
    try{
        String read=null;
        in = new BufferedReader(new FileReader("patientlist.txt")); 
        while ((read = in.readLine()) != null) {
            String[] splited = read.split("\\s+");
            name = splited[0];
            age = splited[1];
            height = splited[2];
            weight = splited[3];
        }
    }
    catch (IOException e) {System.out.println("There was a problem: " + e);} 

    try {
        addpatient(connection, preparedstatement, name, age, height, weight);               
        if (connection != null)
            try{connection.close();} catch(SQLException ignore){}
        }

        catch (SQLException error) {System.out.println(error);}

    }
    public static void addpatient(Connection connection, PreparedStatement preparedstatement, String name, String age, String height, String weight) throws SQLException{
    preparedstatement=connection.prepareStatement("insert into allpatients(name, age, height, weight) values(?,?,?,?)");
    preparedstatement.setString(1, name);
    preparedstatement.setString(2, age);
    preparedstatement.setString(3, height);
    preparedstatement.setString(4, weight);
    preparedstatement.executeUpdate();

    }

连接连接 = DBConnection(); 行创建与数据库的连接,该数据库具有我没有在这里写的另一种方法。我认为问题出在我的 while 循环上,我想我也应该放一个 for 循环,但我的编程不是很好,请帮忙,谢谢。

4

2 回答 2

0

患者列表包含“患者”,所以我首先创建一个类Patient。然后我会Patient为文件中的所有行创建实例。

public class Patient {
   private String name;
   private int age;
   private int height;
   private int weight;

   public Patient(String line) {
     String[] values = line.split("\\s+");
     name = values[0];
     age = values[1];
     height = values[2];
     weight = values[3];
   } 

   // not shown: getters/setters for the fields
}

现在,阅读这些行并创建对象

List<Patient> patients = new ArrayList<>();
while((line = in.readLine()) != null){
    patients.add(new Patient(line));
}

并使用患者列表将数据持久化到数据库中。对于每个患者,准备一个插入语句并坚持下去。

于 2013-09-09T13:19:41.510 回答
0

你可以做

read.split("\\s+");

或者,如果您的值由 分隔tab

read.split("\t");

使用此代码:

String s = "george  19  180 75";

String[]split = s.split("\\s+");
for (int i = 0; i < split.length; i++) {
    System.out.println(split[i]);
}

输出是:

george
19
180
75
于 2013-09-09T12:37:27.993 回答