我有这段代码应该在表中插入数据并用相同的数据填充 txt 文件。但是我发现该表正在填充适当的 2019 行,但该文件仅包含 1639 行[Incomplete last line]
,底部有一条消息。这是什么原因造成的?
while(ora_rs.next()){
sql_stmt.executeUpdate("INSERT INTO SCHED_BUNDLES_TEMP_TEST VALUES (" +
ora_rs.getString("BUNDLE")+", " +
ora_rs.getString("DROPPER_ID")+", '" +
ora_rs.getString("SCHED_DT")+"')");
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
Date new_date = (Date)formatter.parse(ora_rs.getString("SCHED_DT"));
SimpleDateFormat newFormat = new SimpleDateFormat("MM/dd/yyyy");
String final_string = newFormat.format(new_date);
out.write(ora_rs.getString("BUNDLE")+"|"+ora_rs.getString("DROPPER_ID")+"|"+final_string+"\n");
ii++;
}