匯出Excel(POI使用)(一)

2021-08-20 10:13:08 字數 877 閱讀 5192

util裡的寫法

package com.shishike.susie.utility;

import org.apache.poi.hssf.usermodel.hssfcell;

import org.apache.poi.hssf.usermodel.hssfcellstyle;

import org.apache.poi.hssf.usermodel.hssfrow;

import org.apache.poi.hssf.usermodel.hssfsheet;

import org.apache.poi.hssf.usermodel.hssfworkbook;

public class excelexport

// 第二步,在workbook中新增乙個sheet,對應excel檔案中的sheet

hssfsheet sheet = wb.createsheet(sheetname);

// 第三步,在sheet中新增表頭第0行,注意老版本poi對excel的行數列數有限制

hssfrow row = sheet.createrow(0);

// 第四步,建立單元格,並設定值表頭 設定表頭居中

hssfcellstyle style = wb.createcellstyle();

style.setalignment(hssfcellstyle.align_center); // 建立乙個居中格式

//宣告列物件

hssfcell cell = null;

//建立標題

for(int i=0;i//建立內容

for(int i=0;i}

return wb;

}}

API使用介面匯出

一般的構件都會圍繞乙個主體物件開展,如 hibernate的session,spring的bean等 通常都需要乙個配置文件,乙個建造主體物件的工廠 hibernate configuration config new configuration config new file hib.cfg.xm...

使用poi匯出excel

使用poi匯出excel,其中涉及到居中 字型加粗 合併單元格 namespace org examinee results inputname inputstream buffersize 4096 public class orgexamineeexportaction extends nati...

使用EasyPoi匯出Excel

excel模板來自自己寫死的乙個excel模板,相當於是使用者查詢資料,資料填充到乙個模板的excel裡,再匯出excel 建立模板 string a request.getsession getservletcontext getrealpath resource 河南能源化工集團安全監控系統聯網...