我的應用程序從db獲取數據並將其寫入excel。我正在使用poi作爲java excel轉換器 寫入時我有一個問題,即只有最後一行正在寫入,它是否可以實現緩衝,因爲大量數據正在傳輸。apache poi只寫最後一行
這裏是代碼
for(int i=0; i<0;i<workorderlist.size;i++) {
//cargo start
if(null!=workordervolist.get(i).getCargo()){
String cargo = workordervolist.get(i).getCargo();
cell = row1.createCell(15);
cell.setCellStyle(nonEditable);
cell.setCellValue(cargo);
if(cargo.length()> colLenght[15]-2)
colLenght[15] = cargo.length()+2;
}
//cargo end
}
爲什麼您的for循環包含i <0;我
Ewald
2011-12-29 08:35:05