如何使用 POI 3.6 对 .xlsx 文件中的列进行分组?
我最近从 POI 3.1 (HSSF) 切换到 POI 3.6 (XSSF) 并遇到了问题。
问题是 groupColumn
不再按预期工作!
有谁知道为什么列分组仅在写入工作表中的单元格之前才能正常工作,而在写入工作表后则不能正常工作?
在列的单元格中写入数据之后,有没有办法对 xlsx 文件上的列进行分组?
非常感谢,
加布里埃拉
I recently switched from POI 3.1 (HSSF) to POI 3.6 (XSSF) and encountered a problem.
The problem is that the groupColumn
no longer works as expected!
Does anyone know why the column grouping works properly only BEFORE writing in the cells from the worksheet and does not work well AFTER the worksheet is written?
Is there a way to group columns on an xlsx file after writing data in the column's cells?
Thank you very much,
Gabriela
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也遇到过同样的问题。以下代码可以很好地满足我的目的:
最好
奥拉夫
I've had the same problem. The following code works fine for my purposes:
Best
Olaf