您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關JXLS如何根據模板導出Excel的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
先做模板,做成想要的格式樣子保存,然后通過程序根據模板生成對應樣式的Excel文件,代碼簡單。什么連接數據庫查詢然后將結果生成Excel文件就不講了,放入List里面,然后套一下就行了,照老虎花貓。
準備:
1、相關jar包:
2、模板文件 :
開始:
1、 先實體類:Staff.java
package myjxls; /** * 2014-3-17 * 8dou * 實體 */ public class Staff { /** * 名稱 */ private String name; /** * 薪資 */ private Double payment; /** * 年終獎 */ private Double bonus; public String getName() { return name; } public void setName(String name) { this.name = name; } public Double getPayment() { return payment; } public void setPayment(Double payment) { this.payment = payment; } public Double getBonus() { return bonus; } public void setBonus(Double bonus) { this.bonus = bonus; } public Staff(String name, Double payment, Double bonus) { super(); this.name = name; this.payment = payment; this.bonus = bonus; } }
2、測試類 ChartTest.java
package myjxls; /** * 2014-3-17 * 8dou * 測試JXLS根據模板樣式導出Excel */ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import net.sf.jxls.transformer.XLSTransformer; public class ChartTest { /** * @param args */ public static void main(String[] args) throws Exception { List<Staff> staffs = new ArrayList<Staff>(); Staff s1 = new Staff("張三", 6000D, 3000D); staffs.add(s1); Staff s2 = new Staff("李四", 5000D, 2000D); staffs.add(s2); Staff s3 = new Staff("王五", 4000D, 1000D); staffs.add(s3); String srcFilePath = "e:/simple.xlsx"; String destFilePath = "e:/template-simple.xlsx"; Map<String, List<Staff>> beanParams = new HashMap<String, List<Staff>>(); beanParams.put("staffs", staffs); XLSTransformer former = new XLSTransformer(); former.transformXLS(srcFilePath, beanParams, destFilePath); System.out.println("the end !!!"); } }
運行結束后看生成的Excel文件,template-simple.xlsx
如果是Web,需要下載可以看
// 下載 public static void doDownLoad(String path, String name, HttpServletResponse response) { try { response.reset(); response.setHeader("Content-disposition", "attachment;success=true;filename =" + URLEncoder.encode(name, "utf-8")); BufferedInputStream bis = null; BufferedOutputStream bos = null; OutputStream fos = null; InputStream fis = null; File uploadFile = new File(path); fis = new FileInputStream(uploadFile); bis = new BufferedInputStream(fis); fos = response.getOutputStream(); bos = new BufferedOutputStream(fos); // 彈出下載對話框 int bytesRead = 0; byte[] buffer = new byte[8192]; while ((bytesRead = bis.read(buffer, 0, 8192)) != -1) { bos.write(buffer, 0, bytesRead); } bos.flush(); fis.close(); bis.close(); fos.close(); bos.close(); } catch (Exception e) { e.printStackTrace(); } }
最后補充下Excel知識:在單元格里面將日期和時間顯示在同一個單元格里面,自定義單元格式→yyyy-m-d hh:mm:ss
感謝各位的閱讀!關于“JXLS如何根據模板導出Excel”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。