将 JTable 写入 Excel
我计划将 JTable 的内容移至 Microsoft Excel 工作表中。 Excel 工作表应该有一些格式规范。例如,如果一列的值为“A”,则其颜色应为绿色。如果颜色为“B”红色。
我正处于分析阶段。我应该使用哪个罐子?数据并不大,性能也不是一个大问题。
I am planning to move the contents of a JTable into a Microsoft Excel sheet. The Excel sheet should have some format specifications. For instance if a column has a value 'A' it should be green in colour. If it is 'B' red in colour.
I am in analysis stage. Which Jar should I use? The data is not huge.Performance is not a big concern.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我会推荐 Apache POI。它易于使用,允许设置样式等。请参阅此处的快速指南。
I would recommend Apache POI. It is easy to use, allows styling, etc. See the quick guide here.
另一种选择是 JExcelAPI - 我已经使用过它并发现它非常好。
An alternative could be JExcelAPI - I've used this and found it excellent.