如何在java swing中查看xls文档
我正在使用 java swing 创建一个窗口应用程序。 现在我想像这样在 swing 组件(框架/面板)内显示 Excel(xls)文档。
我怎样才能得到这个。有人对此有想法吗???
I am creating a window application using java swing.
Now I want to show the Excel(xls) document inside the swing component(Frame/Panel) like this.
How can I get this. Any one have idea about this???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用jxl(http://jxl.sourceforge.net/)来解析和读取Java中的excel文件。然后在 Swing 中显示它可以是 Excel 单元格的映射转储。
I have used jxl (http://jxl.sourceforge.net/) to parse and read excel files in Java. Displaying it in Swing can then be a map dump of excel cells.
Apache POI 将帮助读取您的 Excel 文件。它有助于从工作表中提取值(当然,还可以做更多事情)。但当然,您仍然需要设计 UI。
这里有一些可能有帮助的东西(相当老的东西,但可能仍然有价值):
论坛提及 JavaSheet、Jeks 和 PoiBrowser 的条目
Apache POI will help reading your excel file. It helps extracting the values from the sheets (and can do much more, of course). But of course, you'll still have to design the UI.
Here something that may help (pretty old stuff but maybe still valuable):
Forum entry mentioning JavaSheet, Jeks and PoiBrowser