ExcelTemplate.java 13.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
package com.thinkgem.jeesite.common.utils.excel;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.text.SimpleDateFormat;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.servlet.jsp.PageContext;

import org.apache.commons.lang3.StringEscapeUtils;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.springframework.beans.factory.annotation.Autowired;

import com.thinkgem.jeesite.common.config.Global;
import com.thinkgem.jeesite.modules.reg.service.base.RegBaseZrzService;

//创建Excel模版类,用于来加载模版Excel表
public class ExcelTemplate {
	 // 创建模版标示符
	 private static final String DATA_LINE = "datas";
	 //excel样式标示符
	 private static final String DEFAULT_STYLE="defaultStyles";
	 private static final String STYLE="styles";
	 
	 //样式容器、用于装载第几列所在的样式
	 private Map<Integer, CellStyle> styles;
	 
	 // 声明Workbook
	 private Workbook workbook;
	 //声明sheet表格
	 private Sheet sheet;
	 //声明row
	 private Row currRow;
	 //声明最后一行数据
	 private int lastRowIndex;
	 //初始化行的下标
	 private int initRowIndex; 
     //初始化列的下标
     private int initCollIndex;
     //当前行的下标
     private int currRowIndex;
     //当前列的下标
     private int currCollIndex;
     //excel默认样式
     private CellStyle defaultStyle;
     //设置默认行高样式
     private float rowHeight;
     //用于记录sernums序列号列列的坐标
//     private int colSernums;
	 // single模式
	 private static ExcelTemplate excelTemplate = new ExcelTemplate();

	 private ExcelTemplate() {
	 }

	 public static ExcelTemplate getInstance() {
	  return excelTemplate;
	 }

	 // 第一步、读取相应模版文档,该方法通过classpath方式读取模版
	 public void readExcelTemplateByClassPath(String path) {
	  try {
	   workbook = WorkbookFactory.create(ExcelTemplate.class.getResourceAsStream(path));
	   //初始化模版
	   initTemplate();
	  } catch (InvalidFormatException e) {
	   e.printStackTrace();
	   throw new RuntimeException("Excel模版格式不正确!");
	  } catch (IOException e) {
	   e.printStackTrace();
	   throw new RuntimeException("Excel模版不存在!");
	  }
	 }
	 //第二种读取模版方式、通过path来继续读取
	 public void readExcelTemplateByPath(String path) {
	  try {
	   workbook = WorkbookFactory.create(new File(path));
	   //初始化模版
	   initTemplate();
	   //创建行
//	   createNewRow();
	  } catch (InvalidFormatException e) {
	   e.printStackTrace();
	   throw new RuntimeException("Excel模版格式不正确!");
	  } catch (IOException e) {
	   e.printStackTrace();
	   throw new RuntimeException("Excel模版不存在!");
	  }
	 }
	 
	 //初始化模版
	 private void initTemplate(){
	   //得到模版中第一个sheet表格
	   sheet=workbook.getSheetAt(0);
	   //初始化配置信息
	   initConfigData();
	   //获取最后一行的数据坐标
	   lastRowIndex=sheet.getLastRowNum();
	   //初始化完成,创建一行
	   //currRow=sheet.getRow(currRowIndex);
//	   createNewRow();
	  }
	 //初始化模版
	 public void initTemplate(int n){
	   //得到模版中第一个sheet表格
	   sheet=workbook.getSheetAt(n);
	   //初始化配置信息
	   initConfigData();
	   //获取最后一行的数据坐标
	   lastRowIndex=sheet.getLastRowNum();
	   //初始化完成,创建一行
	   //currRow=sheet.getRow(currRowIndex);
//	   createNewRow();
	  }
	 
	  //初始化模版中的数据信息找到标识符的坐标
	  private void initConfigData() {
	   boolean isFind=false;
	   boolean isFindSernums=false;
	   for (Row row : sheet) {
	    //如果找到对应的数据就结束
	    if(isFind) break;
	    
	    for (Cell cell : row) {
	     //如果当前行的数据类型不是字符串类型就继续,因为我们在excel模版中设置的是datas是字符串类型
	      if(cell.getCellType()!=Cell.CELL_TYPE_STRING) continue;
	      //获取到当前单元格的值
	      String cellValue=cell.getStringCellValue().trim();
	      //找序列号的标示符sernums
//	      if(cellValue.equals("sernums")){
//	       colSernums=cell.getColumnIndex();
//	       isFindSernums=true;
//	      }
	      if(cellValue.equals("datas")){
	       //获取当前单元格行的坐标
	       initRowIndex=cell.getRowIndex();
	       //获取当前单元格列的坐标
	       initCollIndex=cell.getColumnIndex();
	       currRowIndex=initRowIndex;
	       currCollIndex=initCollIndex;
	       //获取默认行高
	       rowHeight=row.getHeightInPoints();
	      //初始化模版样式
	       initStyles();
	       isFind=true;
	       break;
	      }
	    }
	   }
	   //最后检查一下在初始化数据的时候有没有找到,如果没找到就初始化序列号
//	   initSernums();
	  }
	 
	  //将模版样式初始化数据加载到styles容器中 
	  private void initStyles() {
	   
	   //初始化样式容器
	   styles= new HashMap<Integer, CellStyle>();
	   for (Row row : sheet) {
	    for (Cell cell : row) {
	      if(cell.getCellType()!=Cell.CELL_TYPE_STRING) continue;
	      String cellValue=cell.getStringCellValue().trim();
	      //如果当前列的值等于defaultstyles设置成默认样式
	      if(DEFAULT_STYLE.equals(cellValue)){
	       defaultStyle=cell.getCellStyle();
	      }
	       if(STYLE.equals(cellValue)){
	       styles.put(cell.getColumnIndex(), cell.getCellStyle());
	      }
	    }
	   }
	  }

	  //初始化模版sernums序列号的坐标
//	  private void initSernums() {
//	     for (Row row : sheet) {
//	      for (Cell cell : row) {
//	       //如果当前行的数据类型不是字符串类型就继续,因为我们在excel模版中设置的是sernums是字符串类型
//	        if(cell.getCellType()!=Cell.CELL_TYPE_STRING) continue;
//	        //获取到当前单元格的值
//	        String cellValue=cell.getStringCellValue().trim();
//	        if(cellValue.equals("sernums")){
//	         //获取到序列号sernums的坐标
//	         colSernums=cell.getColumnIndex();
//	        }
//	      }
//	     }
//	   } 
	  
	  
	  //用于替换一些常量固定的值
//	  public void replaceConstant(Map<String, String> datas){
//	   for (Row row : sheet) {
//	    for (Cell cell : row) {
//	      String cellValue=cell.getStringCellValue().trim();
//	      //如果当前模版中式#开头就是我们所需要替换的常量
//	      if(cellValue.startsWith("#")){
//	       //如果datas数据中包含有我们的值就进行常量设置
//	       String key=cellValue.substring(1);
//	       if(datas.containsKey(key)){
//	         cell.setCellValue(datas.get(key));
//	       }
//	      }
//	    }
//	   }
//	  }
	  
	 //创建行
	 public void createNewRow() {
	  if(lastRowIndex>currRowIndex && currRowIndex!=initRowIndex){
	   //移动下一行
	   sheet.shiftRows(currRowIndex, lastRowIndex, 1, true, true);
	   lastRowIndex++;
	  }
	  
	  currRow=sheet.createRow(currRowIndex);
	  //设置行高
	  currRow.setHeightInPoints(rowHeight);
	  //下一行
	  currRowIndex++;
	  //当创建到下一行的单元格的列就应该是初始化的列的坐标
	  currCollIndex=initCollIndex;
	 }
	 
	//创建行
		 public void createNewRowColor() {
		  if(lastRowIndex>currRowIndex && currRowIndex!=initRowIndex){
		   //移动下一行
		   sheet.shiftRows(currRowIndex, lastRowIndex, 1, true, true);
		   lastRowIndex++;
		  }
		  
		  currRow=sheet.createRow(currRowIndex);
		  //设置行高
		  currRow.setHeightInPoints(rowHeight);
		  //设置行颜色
		  CellStyle grayStyle = workbook.createCellStyle();
		  grayStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);
		  grayStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
//		  grayStyle.setFillBackgroundColor(HSSFColor.SKY_BLUE.index);
		  currRow.setRowStyle(grayStyle);
		  //下一行
		  currRowIndex++;
		  //当创建到下一行的单元格的列就应该是初始化的列的坐标
		  currCollIndex=initCollIndex;
		 }
	 
	 //创建列,并为当前单元格赋值
	 public void createCell(String cellValue){
//		 if(currCollIndex==5){
//			 currCollIndex++;
//		 }
		 Cell cell=currRow.createCell(currCollIndex);
		 cell.setCellValue(cellValue);
//		 setCellStyle(cell);
		 //到下一个单元格
		 currCollIndex++;
	 }
	 
	 public void createCellColorStep(String cellValue,int n){
		 currCollIndex+=n;
		 Cell cell=currRow.createCell(currCollIndex);
		 cell.setCellValue(cellValue);
		 CellStyle grayStyle = workbook.createCellStyle();
		 grayStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);
		 grayStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
		 cell.setCellStyle(grayStyle);
		 //到下一个单元格
		 currCollIndex++;
	 }
	 
	 public void createCellColor(String cellValue){
//		 if(currCollIndex==5){
//			 currCollIndex++;
//		 }
		 Cell cell=currRow.createCell(currCollIndex);
		 cell.setCellValue(cellValue);
		 CellStyle grayStyle = workbook.createCellStyle();
		 grayStyle.setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);
		 grayStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
		 cell.setCellStyle(grayStyle);
//		 setCellStyle(cell);
		 //到下一个单元格
		 currCollIndex++;
	 }
	 
	 public void createCellStep(String cellValue,int n){
//		 if(currCollIndex==5){
//			 currCollIndex++;
//		 }
		 currCollIndex+=n;
		 Cell cell=currRow.createCell(currCollIndex);
		 cell.setCellValue(cellValue);
//		 setCellStyle(cell);
		 //到下一个单元格
		 currCollIndex++;
	 }
	 //插入序列号
//	 public void insertSernums(){
//	  int index=1;
//	  Row row=null;
//	  Cell cell= null;
//	  for (int i = initRowIndex; i < currRowIndex; i++) {
//	   //得到当前行
//	   row=sheet.getRow(i);
//	   cell=row.createCell(colSernums);
//	   setCellStyle(cell);
//	   cell.setCellValue(index++);
//	  }
//	 }
	 
	 //设置样式
	 public void setCellStyle(Cell cell){
	  //设置的时候将样式添加进去
	  cell.setCellStyle(styles.containsKey(currCollIndex)?styles.get(currCollIndex):defaultStyle);
	 }
	 
	 //将数据到处到Excel中
	 public void writeFilePath(String filePath){
	  FileOutputStream fos=null;
	  try {
	   fos= new FileOutputStream(new File(filePath));
	   workbook.write(fos);
	  } catch (FileNotFoundException e) {
	   // TODO Auto-generated catch block
	   e.printStackTrace();
	   throw new RuntimeException("写入的文件不存在!");
	  } catch (IOException e) {
	   // TODO Auto-generated catch block
	   e.printStackTrace();
	   throw new RuntimeException("写入流失败!");
	  }finally{
	   try {
	    fos.close();
	   } catch (IOException e) {
	    // TODO Auto-generated catch block
	    e.printStackTrace();
	   }
	  }
	 }
	 
	 public void writeStream(OutputStream os){
	  try {
//		  System.out.println("正在写。。。。。。。。。。。。。。");
	   workbook.write(os);
//	   System.out.println("正常写完成。。。。。。");
	  } catch (IOException e) {
//	   System.out.println("写入异常");
	   e.printStackTrace();
//	   throw new RuntimeException("写入流失败!");
	  }finally{
	   try {
//		   System.out.println("正在关。。。。。");
	    os.close();
//	    System.out.println("正常关闭");
	   } catch (IOException e) {
//	    System.out.println("关闭异常=====================");
	    e.printStackTrace();
	   }
	  }
	 }
	 /**
		 * 导出测试
		 */
		public static void main(String[] args) throws Throwable {
			
//			 ExcelTemplate excelTemplate=ExcelTemplate.getInstance();
//			  excelTemplate.readExcelTemplateByPath("D:"+File.separator+"123"+File.separator+"3、房屋登记信息导入模板 (2).xlsx");
//			  Sheet sheet = excelTemplate.workbook.getSheetAt(0);
//			  Row row = sheet.getRow(12);
//			  Cell cell = row.getCell(0);
//			  System.out.println(cell);
//			  excelTemplate.createNewRow();
//			  excelTemplate.createCell("1111");
//			  excelTemplate.createCell("1112");
//			  excelTemplate.createCell("1113");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createNewRow();
//			  excelTemplate.createCell("1115");
//			  excelTemplate.createCell("1116");
//			  excelTemplate.createCell("1117");
//			  excelTemplate.createCell("1118");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createNewRow();
//			  excelTemplate.createCell("1115a");
//			  excelTemplate.createCell("1116a");
//			  excelTemplate.createCell("1117a");
//			  excelTemplate.createCell("1118a");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createNewRow();
//			  excelTemplate.createCell("1115b");
//			  excelTemplate.createCell("1116b");
//			  excelTemplate.createCell("1117b");
//			  excelTemplate.createCell("1118b");
//			  excelTemplate.createCell("1114");
//			  excelTemplate.createCell("1114");

			  
//			     Map<String, String> datas= new HashMap<String, String>();
//			     datas.put("title", "excel模版测试用例标题");
//			     datas.put("date", "2015-12-24");
//			     datas.put("dep", "帅哥部门");
//			     excelTemplate.replaceConstant(datas);
			  
//			     excelTemplate.insertSernums();
//			  excelTemplate.writeFilePath("D:"+File.separator+"123"+File.separator+"fangwu2.xlsx");
			 
//			 System.out.println(StringEscapeUtils.escapeHtml4("石狮·东方之珠"));
//			 System.out.println(StringEscapeUtils.unescapeHtml4("石狮&middot;东方之珠"));
			SimpleDateFormat aaa = new SimpleDateFormat("");
			
			System.out.println((Double)null==null);
			 
			  System.out.println("aaa");
			 
			
		}
}