BufferedWriter 未将所有内容写入其输出文件
我有一个Java程序,它从文件中逐行读取一些文本,并将新文本写入输出文件。但是,在程序完成后,并非所有我写入的文本都出现在输出文件中。为什么?BufferedWriter
详细信息:程序采用CSV文本文档并将其转换为SQL命令以将数据插入表中。该文本文件有超过 10000 行,如下所示:
2007,10,9,1,1,1006134,19423882
该程序似乎工作正常,只是它只是在创建一个新的SQL语句并将其打印到SQL文件中的中途随机停止。它看起来像这样:
insert into nyccrash values (2007, 1, 2, 1, 4, 1033092, 259916);
insert into nyccrash values (2007, 1, 1, 1, 1, 1020246, 197687);
insert into nyccrash values (2007, 10, 9, 1
这发生在大约10000行之后,但在文件结束前几百行之后。中断发生的位置是在 a 和 .但是,字符似乎并不重要,因为如果我将 更改为 a,则写入新文件的最后一件事是 ,这会从该整数中切断 2。因此,读者或作家似乎在写完/读完一定数量后一定只是死了。1
,
1
42
4
我的Java代码如下:
import java.io.*;
public class InsertCrashData
{
public static void main (String args[])
{
try
{
//Open the input file.
FileReader istream = new FileReader("nyccrash.txt");
BufferedReader in = new BufferedReader(istream);
//Open the output file.
FileWriter ostream = new FileWriter("nyccrash.sql");
BufferedWriter out = new BufferedWriter(ostream);
String line, sqlstr;
sqlstr = "CREATE TABLE nyccrash (crash_year integer, accident_type integer, collision_type integer, weather_condition integer, light_condition integer, x_coordinate integer, y_coordinate integer);\n\n";
out.write(sqlstr);
while((line = in.readLine())!= null)
{
String[] esa = line.split(",");
sqlstr = "insert into nyccrash values ("+esa[0]+", "+esa[1]+", "+esa[2]+", "+esa[3]+", "+esa[4]+", "+esa[5]+", "+esa[6]+");\n";
out.write(sqlstr);
}
}
catch(Exception e)
{
System.out.println(e);
}
}
}