我想知道是否有人拥有允许我在我的应用程序中导出数据库并将其导出为 .csv 的代码。这有望让人们在 Microsoft Office Excel 中打开它并随时读取他们的数据。
问问题
1416 次
2 回答
3
只需执行 SELECT * FROM [table]; (进入一些数据结构)
FileWriter fstream = new FileWriter("out.txt");
BufferedWriter out = new BufferedWriter(fstream);
for(y=0; y<=[#rows]; y++){
for(x=0; x<=[#columns]; x++){
out.write([field]);
out.write(",");
}
out.write("\n");
}
out.close;
于 2012-01-19T16:43:24.823 回答
2
尝试以下方法: 教程
于 2012-01-19T16:34:57.380 回答