您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Java中用POI實現將數據導出到Excel的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
1.SpringMVC,Spring Web MVC是一種基于Java的實現了Web MVC設計模式的請求驅動類型的輕量級Web框架。2.Shiro,Apache Shiro是Java的一個安全框架。3.Mybatis,MyBatis 是支持普通 SQL查詢,存儲過程和高級映射的優秀持久層框架。4.Dubbo,Dubbo是一個分布式服務框架。5.Maven,Maven是個項目管理和構建自動化工具。6.RabbitMQ,RabbitMQ是用Erlang實現的一個高并發高可靠AMQP消息隊列服務器。7.Ehcache,EhCache 是一個純Java的進程內緩存框架。
數據導出為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的方法”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。