真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何用java創(chuàng)建Excel并導(dǎo)出?

如何用java創(chuàng)建Excel并導(dǎo)出?針對(duì)這個(gè)問題,今天小編總結(jié)這篇有關(guān)用java創(chuàng)建Excel并導(dǎo)出的文章,希望幫助更多想解決這個(gè)辦法同學(xué)找到更加簡(jiǎn)單易行的辦法。

賓陽(yáng)網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),賓陽(yáng)網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為賓陽(yáng)近1000家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站制作要多少錢,請(qǐng)找那個(gè)售后服務(wù)好的賓陽(yáng)做網(wǎng)站的公司定做!

1、首先創(chuàng)建一個(gè)Excel也就是

        //聲明工作薄
    HSSFWorkbook wb = new HSSFWorkbook();

2、接下來未頁(yè)簽sheet重命名,也就是

     //sheet頁(yè)簽部分
   HSSFSheet sheet = wb.createSheet("頁(yè)簽的名字");

3、規(guī)劃一下有多少列,再起一個(gè)標(biāo)題,也就是

    //合并標(biāo)題
    sheet.addMergedRegion(new Region(0, (short)0, (short)0,(short)(規(guī)劃的列數(shù))));

4、創(chuàng)建一個(gè)表頭,也就是

         //創(chuàng)建表頭
    row = sheet.createRow(1);

5、循環(huán)插入表格,也就是加一個(gè)for循環(huán)

  //第一層為循環(huán)創(chuàng)建行
        for (int i = 0; i < contentLst.size(); i++) {
            row = sheet.createRow(i+2);
            row.setHeight((short) 550);
            //第二層創(chuàng)建每行的單元格,并填內(nèi)容
            for (int j = 0; j < contentLst.get(i).length; j++) {
                cell = row.createCell(j);
                cell.setCellValue(String.valueOf(contentLst.get(i)[j]));
                cell.setCellStyle(shstyle);
            }
        }

6、內(nèi)容填完了,你不覺得有的字多有的字少,也就是列寬、行高有問題。怎么辦呢?也就是

        //創(chuàng)建標(biāo)題
    HSSFRow row = sheet.createRow(0);
    //設(shè)置標(biāo)題行高
    row.setHeight((short) 行高數(shù));

          //自定義列寬部分,你將每個(gè)列寬作為參數(shù)傳過來具體每列多寬得自己測(cè)試了。
    if(liekuanLst != null && liekuanLst.size() > 0){
        for (int i = 0; i < liekuanLst.size(); i++) {
            sheet.setColumnWidth((short)i, liekuanLst.get(i));
        }
    }

7、內(nèi)容填完了是不是好看,加點(diǎn)樣式?也就是

            //居中字體等樣式區(qū)域
    sheet.setHorizontallyCenter(true);
    //主題
    HSSFCellStyle titlefontshstyle = wb.createCellStyle();
    HSSFFont titlefont = wb.createFont();
    setcontentStyleTable(titlefontshstyle, titlefont, "黑體", 20, true, false);

public static void setcontentStyleTable(HSSFCellStyle shstyle, HSSFFont titlefont, String string, int i, Boolean is_bold, Boolean is_border) {
                titlefont.setFontHeightInPoints((short) i);
                titlefont.setFontName(string);
                shstyle.setWrapText(true);//自動(dòng)換行
                shstyle.setAlignment(HSSFCellStyle.VERTICAL_CENTER);
                if(i != 11 && is_bold){
                        titlefont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                }
                if(is_border){
                        shstyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);//下邊框
                        shstyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左
                        shstyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右
                        shstyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上
                }
                shstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);//上下居中
                shstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);//定義字體樣式左右居中
                shstyle.setFont(titlefont);
        }

8、樣式也調(diào)了,是不是調(diào)一調(diào)打印,也就是

        //添加打印樣式
    addPrintClassData(sheet, false);

            //打印的紙張樣式
public static void addPrintClassData(HSSFSheet sheet, Boolean is_landscape) {
    sheet.setMargin(HSSFSheet.TopMargin, 0.4);//上≈2
    sheet.setMargin(HSSFSheet.BottomMargin, 0.4);//下≈2
    sheet.setMargin(HSSFSheet.LeftMargin, 0.2);//左≈0.5
    sheet.setMargin(HSSFSheet.RightMargin, 0.2);//右≈0.5
    sheet.setHorizontallyCenter(true);
    sheet.setDefaultRowHeight((short) 400);//設(shè)置默認(rèn)行高
    HSSFPrintSetup ps = sheet.getPrintSetup();
    ps.setLandscape(is_landscape);//true橫向,false縱向
    ps.setPaperSize(HSSFPrintSetup.A4_PAPERSIZE);//設(shè)置紙張A4
}

9、Excel創(chuàng)建完了,你怎么給我呢?那得看你要什么了,也就是

    ByteArrayOutputStream bos = null;
                try{
                        /*1轉(zhuǎn)為輸入流*/
                        bos = new ByteArrayOutputStream();
                        wb.write(bos);
                        byte[] bytes = bos.toByteArray();
                        InputStream in = new ByteArrayInputStream(bytes);
                        /*2直接寫入Excel文檔*/
                        /*String fileName = new Date().getTime()+"frozen_excel.xls";
                        FileOutputStream output = new FileOutputStream("/temp/"+fileName);
                        wb.write(output);
                        output.close();*/
                        bos.close();
                }catch (Exception e){
                        e.printStackTrace();
                }

【總結(jié)】
看看上面9步需要哪些參數(shù),將參數(shù)封裝做一個(gè)統(tǒng)一的公共方法,也就是

 /**
         * 導(dǎo)出Excel
         * @param title Excel標(biāo)題
         * @param liekuanLst 設(shè)置的每個(gè)列寬
         * @param biaotouLst 表頭內(nèi)容
         * @param contentLst 單元格內(nèi)容
         * @return 待定
         */
        public String export_Excel(String title, List liekuanLst, List biaotouLst, List contentLst){
                //聲明工作薄
                HSSFWorkbook wb = new HSSFWorkbook();
                //sheet頁(yè)簽部分
                HSSFSheet sheet = wb.createSheet(title);
                //自定義列寬部分
                if(liekuanLst != null && liekuanLst.size() > 0){
                        for (int i = 0; i < liekuanLst.size(); i++) {
                                sheet.setColumnWidth((short)i, liekuanLst.get(i));
                        }
                }
                //居中字體等樣式區(qū)域
                sheet.setHorizontallyCenter(true);
                //主題
                HSSFCellStyle titlefontshstyle = wb.createCellStyle();
                HSSFFont titlefont = wb.createFont();
                setcontentStyleTable(titlefontshstyle, titlefont, "黑體", 20, true, false);
                //表頭樣式
                HSSFCellStyle btfontshstyle = wb.createCellStyle();
                HSSFFont btfont =  wb.createFont();
                setcontentStyleTable(btfontshstyle, btfont, "宋體", 10, true, true);
                //內(nèi)容樣式
             HSSFCellStyle shstyle = wb.createCellStyle();
                HSSFFont contentfont =  wb.createFont();
                setcontentStyle(shstyle, contentfont, "宋體", 11);

                //創(chuàng)建標(biāo)題
                HSSFRow row = sheet.createRow(0);
                //設(shè)置標(biāo)題行高
                row.setHeight((short) 920);
                HSSFCell cell = row.createCell(0);
                cell.setCellValue(title);
                cell.setCellStyle(titlefontshstyle);
                for (int i = 1; i < liekuanLst.size(); i++) {
                        cell = row.createCell(i);
                        cell.setCellStyle(titlefontshstyle);
                }
                //合并標(biāo)題
                sheet.addMergedRegion(new Region(0, (short)0, (short)0,(short)(liekuanLst.size()-1)));

                //創(chuàng)建表頭
                row = sheet.createRow(1);
                //行高
                row.setHeight((short) 550);
                if(biaotouLst != null && biaotouLst.size() > 0){
                        for (int i = 0; i < biaotouLst.size(); i++) {
                                cell = row.createCell(i);
                                cell.setCellValue(biaotouLst.get(i));
                                cell.setCellStyle(btfontshstyle);
                        }
                }

                if(contentLst != null && contentLst.size() > 0){
                        //循環(huán)插入表格內(nèi)容
                        for (int i = 0; i < contentLst.size(); i++) {
                                //當(dāng)前行
                                row = sheet.createRow(i+2);
                                row.setHeight((short) 550);
                                //每個(gè)單元格
                                for (int j = 0; j < contentLst.get(i).length; j++) {
                                        cell = row.createCell(j);
                                        cell.setCellValue(String.valueOf(contentLst.get(i)[j]));
                                        cell.setCellStyle(shstyle);
                                }
                        }
                }
                //添加打印樣式
                addPrintClassData(sheet, false);
                /**
                 * 寫入數(shù)據(jù)
                 */
                ByteArrayOutputStream bos = null;
                try{
                        /*1轉(zhuǎn)為輸入流*/
                        bos = new ByteArrayOutputStream();
                        wb.write(bos);
                        byte[] bytes = bos.toByteArray();
                        InputStream in = new ByteArrayInputStream(bytes);
                        /*2直接寫入Excel文檔*/
                        /*String fileName = new Date().getTime()+"frozen_excel.xls";
                        FileOutputStream output = new FileOutputStream("/temp/"+fileName);
                        wb.write(output);
                        output.close();*/
                        bos.close();
                }catch (Exception e){
                        e.printStackTrace();
                }
                return "";
        }
        //單元格樣式
        public static void setcontentStyle(HSSFCellStyle shstyle, HSSFFont titlefont, String string, int i) {
                titlefont.setFontHeightInPoints((short) i);
                titlefont.setFontName(string);
                shstyle.setWrapText(true);//自動(dòng)換行
                if(i != 11){
                        titlefont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                }
                shstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);//定義字體樣式左右居中
                shstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);//上下居中
                shstyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);//下邊框
                shstyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左
                shstyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右
                shstyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上
                shstyle.setFont(titlefont);
        }
        public static void setcontentStyleTable(HSSFCellStyle shstyle, HSSFFont titlefont, String string, int i, Boolean is_bold, Boolean is_border) {
                titlefont.setFontHeightInPoints((short) i);
                titlefont.setFontName(string);
                shstyle.setWrapText(true);//自動(dòng)換行
                shstyle.setAlignment(HSSFCellStyle.VERTICAL_CENTER);
                if(i != 11 && is_bold){
                        titlefont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                }
                if(is_border){
                        shstyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);//下邊框
                        shstyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左
                        shstyle.setBorderRight(HSSFCellStyle.BORDER_THIN);//右
                        shstyle.setBorderTop(HSSFCellStyle.BORDER_THIN);//上
                }
                shstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);//上下居中
                shstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);//定義字體樣式左右居中
                shstyle.setFont(titlefont);
        }
        //打印的紙張樣式
        public static void addPrintClassData(HSSFSheet sheet, Boolean is_landscape) {
                sheet.setMargin(HSSFSheet.TopMargin, 0.4);//上≈2
                sheet.setMargin(HSSFSheet.BottomMargin, 0.4);//下≈2
                sheet.setMargin(HSSFSheet.LeftMargin, 0.2);//左≈0.5
                sheet.setMargin(HSSFSheet.RightMargin, 0.2);//右≈0.5
                sheet.setHorizontallyCenter(true);
                sheet.setDefaultRowHeight((short) 400);//設(shè)置默認(rèn)行高
                HSSFPrintSetup ps = sheet.getPrintSetup();
                ps.setLandscape(is_landscape);//true橫向,false縱向
                ps.setPaperSize(HSSFPrintSetup.A4_PAPERSIZE);//設(shè)置紙張A4
        }

如何用java創(chuàng)建Excel并導(dǎo)出?

關(guān)于用java創(chuàng)建Excel并導(dǎo)出的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果喜歡這篇文章,不如把它分享出去讓更多的人看到。


網(wǎng)頁(yè)標(biāo)題:如何用java創(chuàng)建Excel并導(dǎo)出?
鏈接URL:http://weahome.cn/article/gdccss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部