pio 操作 Excel

pio 操作 Excel 文件 模版类

 

package util;

import java.util.Date;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
import java.util.Set;

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;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;

/**
 *
 * 功能描述: Excel操纵类,可以根据Excel模板来生成Excel对象<br>
 */
public class ExcelTemplate {
 private static final String DATAS = "datas";
 
 private HSSFWorkbook workbook;
 private HSSFSheet sheet;
 private HSSFRow currentRow;
 private Map styles = new HashMap(); //数据行的默认样式配置
 private Map confStyles = new HashMap(); //通过设置"#STYLE_XXX"来标识的样式配置
 private int initrow; //数据输出起始行
 private int initcol; //数据输出起始列
 private int num; //index number
 private int currentcol; //当前列
 private int currentRowIndex; //当前行index
 private int rowheight = 22; //行高
 private int lastLowNum = 0;
 private String cellStyle = null;
 
 private ExcelTemplate() {
 }
 
 /**
  * 使用默认模板创建ExcelTemplate对象
  * @return 根据模板已初始化完成的ExcelTemplate对象
  */
 public  ExcelTemplate newInstance(){
  return newInstance("templates/default.xls");
 }

 /**
  * 指定模板创建ExcelTemplate对象
  * @param templates 模板名称
  * @return 根据模板已初始化完成的ExcelTemplate对象
  */
 public static  ExcelTemplate newInstance(String templates){
  try {
   ExcelTemplate excel = new ExcelTemplate();
   POIFSFileSystem fs = new POIFSFileSystem(
     Thread.currentThread().getContextClassLoader()
     .getResourceAsStream(templates));
   excel.workbook = new HSSFWorkbook(fs);
   excel.sheet = excel.workbook.getSheetAt(0);
   
   //查找配置
   excel.initConfig();
   
   //查找其它样式配置
   excel.readCellStyles();
   
   //删除配置行
   excel.sheet.removeRow( excel.sheet.getRow(excel.initrow) );
   
   return excel;
  } catch (Exception e) {
   e.printStackTrace();
   throw new RuntimeException("创建Excel对象出现异常");
  }
 }
 
 
 /**
  * 设置特定的单元格样式,此样式可以通过在模板文件中定义"#STYLE_XX"来得到,如:
  * #STYLE_1,传入的参数就是"STYLE_1"
  * @param style
  */
 public void setCellStyle(String style){
  cellStyle = style;
 }
 
 /**
  * 取消特定的单元格格式,恢复默认的配置值,即DATAS所在行的值
  */
 public void setCellDefaultStyle(){
  cellStyle = null;
 }
 
 /**
  * 创建新行
  * @param index 从0开始计数
  */
 public void createRow(int index){
  //如果在当前插入数据的区域有后续行,则将其后面的行往后移动
  if(lastLowNum > initrow && index > 0){
   sheet.shiftRows(index + initrow ,lastLowNum + index,1,true,true);
  }
  currentRow = sheet.createRow(index + initrow);
  currentRow.setHeight((short)rowheight);
  currentRowIndex = index;
  currentcol = initcol;
 }
 
 /**
  * 根据传入的字符串值,在当前行上创建新列
  * @param value 列的值(字符串)
  */
 public void createCell(String value){
  HSSFCell cell = createCell();
  cell.setCellType(HSSFCell.CELL_TYPE_STRING);
  cell.setCellValue(value);
 }
 
 /**
  * 根据传入的日期值,在当前行上创建新列
  * 在这种情况下(传入日期),你可以在模板中定义对应列
  * 的日期格式,这样可以灵活通过模板来控制输出的日期格式
  * @param value 日期
  */
 public void createCell(Date value){
  HSSFCell cell = createCell();
  cell.setCellValue(value);
 }
 
 /**
  * 创建当前行的序列号列,通常在一行的开头便会创建
  * 注意要使用这个方法,你必需在创建行之前调用initPageNumber方法
  */
 public void createSerialNumCell(){
  HSSFCell cell = createCell();
  cell.setCellValue(currentRowIndex + num);
 }
 
 @SuppressWarnings("deprecation")
 private HSSFCell createCell(){
  HSSFCell cell = currentRow.createCell((short)currentcol++);
  cell.setEncoding(HSSFCell.ENCODING_UTF_16);
  HSSFCellStyle style = (HSSFCellStyle)styles.get(new Integer(cell.getCellNum()));
  if(style != null){
   cell.setCellStyle(style);
  }
  
  //设置了特定格式
  if(cellStyle != null){
   HSSFCellStyle ts = (HSSFCellStyle)confStyles.get(cellStyle);
   if(ts != null){
    cell.setCellStyle(ts);
   }
  }
  return cell;
 }
 
 /**
  * 获取当前HSSFWorkbook的实例
  * @return
  */
 public HSSFWorkbook getWorkbook(){
  return workbook;
 }
 
 /**
  * 获取模板中定义的单元格样式,如果没有定义,则返回空
  * @param style 模板定义的样式名称
  * @return 模板定义的单元格的样式,如果没有定义则返回空
  */
 public HSSFCellStyle getTemplateStyle(String style){
  return (HSSFCellStyle)confStyles.get(style);
 }
 
 /**
  * 替换模板中的文本参数
  * 参数以“#”开始
  * @param props
  */
 public void replaceParameters(Properties props){
  if(props == null || props.size() == 0){
   return;
  }
  Set propsets = props.entrySet();
  Iterator rowit = sheet.rowIterator();
  while(rowit.hasNext()){
   HSSFRow row = (HSSFRow)rowit.next();
   if(row == null) continue;
   int cellLength = row.getLastCellNum();
   for(int i=0; i<cellLength; i++){
    HSSFCell cell = (HSSFCell)row.getCell((short)i);
    if(cell == null) continue;
    String value = cell.getStringCellValue();
    if(value != null && value.indexOf("#") != -1){
     for (Iterator iter = propsets.iterator(); iter.hasNext();) {
      Map.Entry entry = (Map.Entry) iter.next();
      value = value.replaceAll("#"+entry.getKey(),(String)entry.getValue());
     }
    }
    cell.setEncoding(HSSFCell.ENCODING_UTF_16);
    cell.setCellValue(value);
   }
  }
 }
 
 /**
  * 初始化Excel配置
  */
 private void initConfig(){
  lastLowNum = sheet.getLastRowNum();
  Iterator rowit = sheet.rowIterator();
  boolean configFinish = false;
  while(rowit.hasNext()){
   if(configFinish){
    break;
   }
   HSSFRow row = (HSSFRow)rowit.next();
   if(row == null) continue;
   int cellLength = row.getLastCellNum();
   int rownum = row.getRowNum();
   for(int i=0; i<cellLength; i++){
    HSSFCell cell = (HSSFCell)row.getCell((short)i);
    if(cell == null) continue;
    String config = cell.getStringCellValue();
    if(DATAS.equalsIgnoreCase(config)){
     //本行是数据开始行和样式配置行,需要读取相应的配置信息
     initrow = row.getRowNum();
     rowheight = row.getHeight();
     initcol = cell.getCellNum();
     configFinish = true;
    }
    if(configFinish){
     readCellStyle(cell);
    }    
   }
  }
 }
 
 /**
  * 读取cell的样式
  * @param cell
  */
 private void readCellStyle(HSSFCell cell){
  HSSFCellStyle style = cell.getCellStyle();
  if(style == null) return;
  styles.put(new Integer(cell.getCellNum()),style);
 }
 
 /**
  * 读取模板中其它单元格的样式配置
  */
 private void readCellStyles(){
  Iterator rowit = sheet.rowIterator();
  while(rowit.hasNext()){
   HSSFRow row = (HSSFRow)rowit.next();
   if(row == null) continue;
   int cellLength = row.getLastCellNum();
   for(int i=0; i<cellLength; i++){
    HSSFCell cell = (HSSFCell)row.getCell((short)i);
    if(cell == null) continue;
    String value = cell.getStringCellValue();
    if(value != null && value.indexOf("#STYLE_") != -1){
     HSSFCellStyle style = cell.getCellStyle();
     if(style == null) continue;
     confStyles.put(value.substring(1),style);
     //remove it
     row.removeCell(cell);
    }
   }
  }
 }
}
 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值