码迷,mamicode.com
首页 > 其他好文 > 详细

POI操作excel

时间:2016-05-07 11:03:14      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

POI依赖

<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.14</version>
		</dependency>

创建excel

public static void createExcel() throws Exception {
    Workbook workbook = null;// new HSSFWorkbook(); //xls
    workbook = new XSSFWorkbook();// xlsx
    Sheet sheet1 = workbook.createSheet();
    workbook.createSheet("sheet2");
    // 第二行
    Row row = sheet1.createRow(1);
    // 第二行第三个单元格
    Cell cell = row.createCell(2);
    cell.setCellValue("中华人民共和国");

    //////////////////// 样式///////////////////////////
    // 1.2创建单元格样式
    CellStyle style = workbook.createCellStyle();
    style.setAlignment(CellStyle.ALIGN_CENTER);// 水平居中
    style.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
    // 1.3设置字体
    Font font = workbook.createFont();
    font.setBoldweight(Font.BOLDWEIGHT_BOLD);
    font.setFontHeightInPoints((short) 16);
    // 加载字体
    style.setFont(font);
    // 单元格背景
    // style.setFillPattern(CellStyle.DIAMONDS);//填充模式
    // style.setFillBackgroundColor(Color.YELLOW.index);//背景色
    cell.setCellStyle(style);


    //////////////////// 合并///////////////////////////合并之后坐标不便,内容样式一样不便,坐标 4行3列
    // 第4行5行,从第3到第5单元格合并 , ============写入值
    Cell cellxx= sheet1.createRow(3).createCell(2);
    cellxx.setCellStyle(style);
    cellxx.setCellValue("美利坚合众国");
    // 第4行5行,从第3到第5单元格合并
    CellRangeAddress cellRangeAddress = new CellRangeAddress(3, 4, 2, 4);// <span style="font-family: Arial, Helvetica, sans-serif;">int firstRow, </span><span style="font-family: Arial, Helvetica, sans-serif;"></span><span style="font-family: Arial, Helvetica, sans-serif;">int lastRow, </span><span style="font-family: Arial, Helvetica, sans-serif;"></span><span style="font-family: Arial, Helvetica, sans-serif;">int firstCol, </span><span style="font-family: Arial, Helvetica, sans-serif;"></span><span style="font-family: Arial, Helvetica, sans-serif;">int lastCol</span>

    sheet1.addMergedRegion(cellRangeAddress);


    // 输出到流中
    // ByteArrayOutputStream stream=new ByteArrayOutputStream();
    // workbook.write(stream);

    FileOutputStream fileOutputStream = new FileOutputStream("D:\\XX.xls");
    
    workbook.write(fileOutputStream);
    // 关闭
    workbook.close();
    fileOutputStream.close();
    System.out.println("excel输出成功");
  }

读取excel

public static void readExcel() throws Exception {
    FileInputStream fileInputStream = new FileInputStream("D:\\XX.xls");
    Workbook workbook = null;// new HSSFWorkbook(fileInputStream);//xls
    workbook = new XSSFWorkbook(fileInputStream);// xlsx
    Sheet sheet1 = workbook.getSheetAt(0);

    // 第二行
    Row row = sheet1.getRow(1);
    // 第二行第三个单元格
    Cell cell = row.getCell(2);

    System.out.printf("第二行三列的值:%s", cell.getStringCellValue());
    System.out.println();
    System.out.printf("第四行三列的值:%s", sheet1.getRow(3).getCell(2).getStringCellValue());//合并单元格 4行3列 的值
    // 关闭
    workbook.close();
    fileInputStream.close();
  }









POI操作excel

标签:

原文地址:http://blog.csdn.net/sqlaowen/article/details/51332541

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!