您好,登錄后才能下訂單哦!
這篇文章主要講解了“Java項目中怎么用POI導出數據到Excel文件”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Java項目中怎么用POI導出數據到Excel文件”吧!
需要用到的jar包 poi-3.17.jar
//第一步創建一個webbook,對應一個Excel文件
HSSFWorkbook wb=new HSSFWorkbook();
//第二步,在webbook中添加一個sheet,對應Excel文件中的sheet
HSSFSheet sheet=wb.createSheet("食物信息數據");
//第三步,在sheet中添加表頭第0行
HSSFRow row = sheet.createRow(0);
//第四步,創建單元格,并設置表頭居中
HSSFCellStyle style = wb.createCellStyle();
style.setAlignment(HorizontalAlignment.CENTER);//居中格式
HSSFCell cell = row.createCell(0);
cell.setCellValue("編號");
cell.setCellStyle(style);
cell=row.createCell((short)1);
cell.setCellValue("名稱");
cell.setCellStyle(style);
cell=row.createCell((short)2);
cell.setCellValue("類型");
cell.setCellStyle(style);
cell=row.createCell((short)3);
cell.setCellValue("單價");
cell.setCellStyle(style);
cell=row.createCell((short)4);
cell.setCellValue("庫存");
cell.setCellStyle(style);
//第五步,寫入實體數據,從數據庫拿數據
FoodController controller=new FoodController();
List<Foods> foodsList = controller.foodsList(null, null);
for (int i = 0; i < foodsList.size(); i++) {
//創建單元格,并賦值
row=sheet.createRow(i+1);
Foods foods = foodsList.get(i);
row.createCell((short)0).setCellValue(foods.getId());
row.createCell((short)1).setCellValue(foods.getName());
row.createCell((short)2).setCellValue(foods.getType());
row.createCell((short)3).setCellValue(foods.getPrice());
row.createCell((short)4).setCellValue(foods.getNum());
}
//第六步,下載Excel
OutputStream out=null;
out=response.getOutputStream();
String fileName="食物信息.xls";
response.setContentType("application/x-=msdownload");
response.setHeader("Content-Disposition", "attachment; filename="
+URLEncoder.encode(fileName, "UTF-8"));
wb.write(out);
感謝各位的閱讀,以上就是“Java項目中怎么用POI導出數據到Excel文件”的內容了,經過本文的學習后,相信大家對Java項目中怎么用POI導出數據到Excel文件這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。