如何使用 Java 创建 Excel 表格?
我正在使用 JExcel 创建 Excel 文档。我想使用 JAVA 在 Excel 文档中创建 Excel 表格。我已填充单元格中的行和列,但无法创建 Excel 表格并将数据填充到 Excel 表格中
I am using JExcel for creating an excel document. I want to create a Excel table in Excel document using JAVA. I have populated the rows and columns in cells, I could not able to create Excel table and populate data into Excel Table
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用Apache POI,它对所有类型的Excel操作都有很好的支持。
Use Apache POI, it has very good support for all types of Excel manipulation.
信息非常有限,但渴望投票,我会尝试一下
Excel 中的表格只不过是周围有边框的单元格。一旦单元格中有数据,您可以使用 jxl.format.BorderLineStyle 在它们周围创建边框,这将是您的表格。简单的 :)
Very limited info but being thirsty for votes I will take a stab
Tables in excel are nothing but cells with boarders around them . Once you have data in your cells you use jxl.format.BorderLineStyle to create boarder around them and that would be your table . Simple :)