POI操作excel官方指导

 

1、poi依赖

  
  
  
  
  1. <!-- apache poi --> 
  2.         <dependency> 
  3.             <groupId>org.apache.poi</groupId> 
  4.             <artifactId>poi</artifactId> 
  5.             <version>3.8-beta3</version> 
  6.         </dependency> 
  7.         <dependency> 
  8.             <groupId>org.apache.poi</groupId> 
  9.             <artifactId>poi-ooxml</artifactId> 
  10.             <version>3.8-beta3</version> 
  11.         </dependency> 

Maven仓库查找:http://search.maven.org/#browse

2、官方指导文档

http://poi.apache.org/spreadsheet/quick-guide.html#MergedCells

你可能感兴趣的:(poi,Excel,职场,休闲,POI操作)