码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA使用POI操作Excel入门程序

时间:2017-09-24 18:26:17      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:工作   create   write   nes   style   多行   ble   work   height   

 

 jar 包地址:

  链接: https://pan.baidu.com/s/1gfOVslH 密码: 44wu

 

 1 /**
 2      * 创建一个工作薄
 3      * @throws IOException 
 4      */
 5     @Test
 6     public void createWorkbook() throws IOException {
 7         Workbook wb = new HSSFWorkbook() ;
 8         FileOutputStream out = new FileOutputStream("G:\\工作薄.xls") ;
 9         wb.write(out);
10         out.close();
11     }

 

 1 /**
 2      * 创建一个Sheet页
 3      * @throws IOException 
 4      */
 5     @Test
 6     public void createSheet() throws IOException {
 7         Workbook wb = new HSSFWorkbook() ;
 8         FileOutputStream out = new FileOutputStream("G:\\工作薄.xls") ;
 9         wb.createSheet("第一个Sheet页") ;
10         wb.createSheet("第二个Sheet页") ;
11         wb.write(out);
12         out.close();
13     }

 

 1 /**
 2      * 创建Row(行) 和 Cell(列) 并在单元格中写入数据
 3      * @throws IOException 
 4      */
 5     @Test
 6     public void createRowAndCell() throws IOException {
 7         Workbook wb = new HSSFWorkbook() ;
 8         FileOutputStream out = new FileOutputStream("G:\\工作薄.xls") ;
 9         Sheet oneSheet = wb.createSheet("第一个Sheet页") ;
10         
11         // 创建Row 
12         Row oneRow = oneSheet.createRow(0) ; // 创建第一行,可以创建多行
13         
14         // 创建Cell 
15         Cell oneCell = oneRow.createCell(0) ; // 创建第一列,也就是第一行的第一个单元格
16         Cell twoCell = oneRow.createCell(1) ; // 创建第二列,也就是第一行的第二个单元格
17         Cell threeCell = oneRow.createCell(2) ; 
18         Cell fourCell = oneRow.createCell(3) ; 
19         Cell fiveCell = oneRow.createCell(4) ;
20         
21         // 向单元格中写入数据
22         oneCell.setCellValue(true) ; // boolean 类型
23         twoCell.setCellValue(1) ;    // int 类型
24         threeCell.setCellValue(new Date()) ; // Date 类型
25         fourCell.setCellValue(3.14D) ; // Double 类型
26         fiveCell.setCellValue("Hello POI") ; // String 类型
27         
28         wb.write(out);
29         out.close();
30     }

 

亲,可以微信或支付宝打赏一下作为支持哦!谢谢!祝您工作顺利哈!

       技术分享          技术分享

 

JAVA使用POI操作Excel入门程序

标签:工作   create   write   nes   style   多行   ble   work   height   

原文地址:http://www.cnblogs.com/li1010425/p/7587704.html

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