Java(poi)匯出Excel資料

來源:互聯網
上載者:User

標籤:Java;poi;匯出Excel資料

import java.io.FileOutputStream;
import java.io.OutputStream;
import java.net.URLEncoder;

import javax.servlet.http.HttpServletResponse;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.util.CellRangeAddress;
import org.apache.poi.hssf.util.HSSFColor;

@SuppressWarnings( { "deprecation" })
public class Test46 {

public void Excel(HttpServletRequest request, HttpServletResponse response) throws Exception {String sheetName = "用車統計表單";    String titleName = "用車申請資料統計表";    String title2Name = "自查日期:";    String fileName = "用車申請統計表單";    String beiZhuName ="備忘:1.測試 。\r\n2.測試 。\r\n3.測試 。";//**設定強制換行“\r\n”**    int columnNumber = 3;    int[] columnWidth = { 10, 20, 30 };    String[][] dataList = { { "001", "2015-01-01", "IT" },            { "002", "2015-01-02", "市場部" }, { "003", "2015-01-03", "測試" } };    String[] columnName = { "單號", "申請時間", "申請部門" };}        // 第一步,建立一個webbook,對應一個Excel檔案        HSSFWorkbook wb = new HSSFWorkbook();        // 第二步,在webbook中添加一個sheet,對應Excel檔案中的sheet        HSSFSheet sheet = wb.createSheet(sheetName);        // sheet.setDefaultColumnWidth(15); //統一設定列寬        for (int i = 0; i < columnNumber; i++)         {            for (int j = 0; j <= i; j++)             {                if (i == j)                 {                    sheet.setColumnWidth(i, columnWidth[j] * 256); // 單獨設定每列的寬                }            }        }        // 建立第0行 也就是標題        HSSFRow row1 = sheet.createRow((int) 0);        row1.setHeightInPoints(50);// 裝置標題的高度        // 第三步建立標題的儲存格樣式style2以及字型樣式headerFont1        HSSFCellStyle style2 = wb.createCellStyle();        style2.setAlignment(HSSFCellStyle.ALIGN_CENTER);        style2.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);        style2.setFillForegroundColor(HSSFColor.LIGHT_TURQUOISE.index);        style2.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);        HSSFFont headerFont1 = (HSSFFont) wb.createFont(); // 建立字型樣式        headerFont1.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD); // 字型加粗        headerFont1.setFontName("黑體"); // 設定字型類型        headerFont1.setFontHeightInPoints((short) 15); // 設定字型大小        style2.setFont(headerFont1); // 為標題樣式設定字型樣式        HSSFCell cell1 = row1.createCell(0);// 建立標題第一列        sheet.addMergedRegion(new CellRangeAddress(0, 0, 0,                columnNumber - 1)); // 合并第0到第17列        cell1.setCellValue(titleName); // 設定值標題        cell1.setCellStyle(style2); // 設定標題樣式        // 建立 時間        HSSFRow row2 = sheet.createRow((int) 1);        row2.setHeightInPoints(21);// 設定時間高度        // 建立時間 儲存格樣式 以及表頭的字型樣式        HSSFCellStyle style2 = wb.createCellStyle();        style2.setAlignment(HSSFCellStyle.ALIGN_RIGHT);// 建立一個靠右格式 水平方向        style2.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); // 垂直方向        HSSFFont headerFont2 = (HSSFFont) wb.createFont(); // 建立字型樣式        headerFont2.setFontName("楷體"); // 設定字型類型        headerFont2.setFontHeightInPoints((short) 12); // 設定字型大小        style2.setFont(headerFont2); // 為標題樣式設定字型樣式        HSSFCell cell2 = row2.createCell(0);// 設定值在第一列         // 合并欄位標題 在用poi在EXECL報表設計的時候,遇到儲存格合并問題,         //用到一個重要的函數:CellRangeAddress(int, int, int, int)         //參數:起始行號,終止行號, 起始列號,終止列號        sheet.addMergedRegion(new CellRangeAddress(1, 1, 0, columnNumber - 1));        SimpleDateFormat df2 = new SimpleDateFormat("yyyy年MM月dd日");        String date2 = df2.format(new Date());        cell2.setCellValue(title2Name + date2); // 設定值標題        cell2.setCellStyle(style2); // 設定標題樣式        // 建立備忘        HSSFRow row3 = sheet.createRow((int) 12);        row3.setHeightInPoints(71);// 裝置標題的高度        // 第三步建立標題的儲存格樣式style2以及字型樣式headerFont1        HSSFCellStyle style3 = wb.createCellStyle();        style3.setWrapText(true);// 設定自動換行        style3.setAlignment(HSSFCellStyle.ALIGN_LEFT);// 水平靠左        style3.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); // 垂直方向        HSSFFont headerFont3 = (HSSFFont) wb.createFont(); // 建立字型樣式        headerFont3.setFontName("仿宋"); // 設定字型類型        headerFont3.setFontHeightInPoints((short) 11); // 設定字型大小        style3.setFont(headerFont3); // 為標題樣式設定字型樣式        HSSFCell cell3 = row3.createCell(0);// 建立標題第一列        sheet.addMergedRegion(new CellRangeAddress(12, 12, 0, columnNumber - 1)); // 合并欄位標題        cell3.setCellValue(beiZhuName); // 設定值標題        cell3.setCellStyle(style3); // 設定標題樣式        // 建立第1行 也就是表頭        HSSFRow row = sheet.createRow((int) 2);        row.setHeightInPoints(25);// 設定表頭高度        // 建立第1行 也就是表頭        HSSFRow row = sheet.createRow((int) 1);        row.setHeightInPoints(37);// 設定表頭高度        // 第四步,建立表頭儲存格樣式 以及表頭的字型樣式        HSSFCellStyle style = wb.createCellStyle();        style.setWrapText(true);// 設定自動換行        style.setAlignment(HSSFCellStyle.ALIGN_CENTER);        style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); // 建立一個置中格式        style.setBottomBorderColor(HSSFColor.BLACK.index);        style.setBorderBottom(HSSFCellStyle.BORDER_THIN);        style.setBorderLeft(HSSFCellStyle.BORDER_THIN);        style.setBorderRight(HSSFCellStyle.BORDER_THIN);        style.setBorderTop(HSSFCellStyle.BORDER_THIN);        HSSFFont headerFont = (HSSFFont) wb.createFont(); // 建立字型樣式        headerFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD); // 字型加粗        headerFont.setFontName("黑體"); // 設定字型類型        headerFont.setFontHeightInPoints((short) 10); // 設定字型大小        style.setFont(headerFont); // 為標題樣式設定字型樣式        // 第四.一步,建立表頭的列        for (int i = 0; i < columnNumber; i++)         {            HSSFCell cell = row.createCell(i);            cell.setCellValue(columnName[i]);            cell.setCellStyle(style);        }        // 第五步,建立儲存格,並設定值        for (int i = 0; i < dataList.length; i++)         {            row = sheet.createRow((int) i + 2);            // 為資料內容設定特點新儲存格樣式1 自動換行 上下置中            HSSFCellStyle zidonghuanhang = wb.createCellStyle();            zidonghuanhang.setWrapText(true);// 設定自動換行            zidonghuanhang                    .setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); // 建立一個置中格式            // 設定邊框            zidonghuanhang.setBottomBorderColor(HSSFColor.BLACK.index);            zidonghuanhang.setBorderBottom(HSSFCellStyle.BORDER_THIN);            zidonghuanhang.setBorderLeft(HSSFCellStyle.BORDER_THIN);            zidonghuanhang.setBorderRight(HSSFCellStyle.BORDER_THIN);            zidonghuanhang.setBorderTop(HSSFCellStyle.BORDER_THIN);            // 為資料內容設定特點新儲存格樣式2 自動換行 上下置中左右也置中            HSSFCellStyle zidonghuanhang2 = wb.createCellStyle();            zidonghuanhang2.setWrapText(true);// 設定自動換行            zidonghuanhang2                    .setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); // 建立一個上下置中格式            zidonghuanhang2.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 左右置中            // 設定邊框            zidonghuanhang2.setBottomBorderColor(HSSFColor.BLACK.index);            zidonghuanhang2.setBorderBottom(HSSFCellStyle.BORDER_THIN);            zidonghuanhang2.setBorderLeft(HSSFCellStyle.BORDER_THIN);            zidonghuanhang2.setBorderRight(HSSFCellStyle.BORDER_THIN);            zidonghuanhang2.setBorderTop(HSSFCellStyle.BORDER_THIN);            HSSFFont neiRongFont = (HSSFFont) wb.createFont(); // 建立內容字型樣式            neiRongFont.setFontName("宋體"); // 設定內容字型類型            neiRongFont.setFontHeightInPoints((short) 11); // 設定內容字型大小            zidonghuanhang2.setFont(neiRongFont); // 為內容樣式設定字型樣式            HSSFCell datacell = null;            for (int j = 0; j < columnNumber; j++)             {                datacell = row.createCell(j);                datacell.setCellValue(dataList[i][j]);                datacell.setCellStyle(zidonghuanhang2);            }        }    // 輸出Excel檔案  ,直接找到瀏覽器設定的,下載完成        try {            SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");            String date = sdf.format(new Date());            OutputStream output = response.getOutputStream();            String filename = fileName + date + ".xls";            response.getOutputStream().write(1);            response.reset();            response.setHeader("Content-disposition",                    "attachment; filename=".concat(String.valueOf(URLEncoder.encode(filename, "UTF-8"))));            response.setContentType("application/msexcel;charset=UTF-8");//設定匯出的檔案名稱為UTF-8格式,支援漢字名稱+時間            wb.write(output);            wb.close();            output.flush();            output.close();        } catch (Exception e) {            e.printStackTrace();        }}

}
推薦一個poi知識點很全的部落格地址:https://www.cnblogs.com/azhqiang/p/4362090.html

Java(poi)匯出Excel資料

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.