使用Apache POI在Excel中合并单元格
有没有其他的方式来使用Apache POI库在Excel中合并单元格?
我正在尝试使用以下,但它不工作
// selecting the region in Worksheet for merging data CellRangeAddress region = CellRangeAddress.valueOf("A" + rowNo + ":D" + rowNo); // merging the region sheet1.addMergedRegion(region);
你可以使用sheet.addMergedRegion(rowFrom,rowTo,colFrom,colTo);
示例sheet.addMergedRegion(new CellRangeAddress(1,1,4,1));
将从B2合并到E2。 记住它是基于零的索引。
有关详细信息,请参阅“ Busy开发人员指南”
最好的答案
sheet.addMergedRegion(new CellRangeAddress(start-col,end-col,start-cell,end-cell));
- 如何解决“生成最终归档时出错:重复条目:AndroidManifest.xml”
- 为什么从Android的性能提示中删除了“仅仅需要Ints的地方呢?
- Android Eclipse NoClassDefFoundError用于外部.jar文件
- ViewPager.setOffscreenPageLimit(0)不能按预期方式工作
- 如何为RecyclerView创build上下文菜单
- 如何在Android中发送带有文件附件的电子邮件
- 从Picasa // Google +同步文件夹中获取图片库中的图片不起作用
- 如何使用Retrofit从asynchronouscallback中返回String或JSONObject?
- 活动与服务之间的沟通