在JFrame中显示Excel工作表

时间:2015-01-16 06:17:11

标签: java excel swing

有没有办法直接在JFrame显示excel表而不是读取所有单元格?就像我们直接在框架中显示网页一样,或者我是否必须阅读excel文件?

JEditorPane website = new JEditorPane("http://smo-gram.tumblr.com/");

1 个答案:

答案 0 :(得分:2)

您可以使用Desktop API在操作系统的默认电子表格应用中显示Excel文件。阅读How to Integrate With the Desktop上的Swing教程中的部分。

或者您可以使用以下网址中的API访问该文件的数据:Integrating excel sheet with java swing