有没有办法直接在JFrame
显示excel表而不是读取所有单元格?就像我们直接在框架中显示网页一样,或者我是否必须阅读excel文件?
JEditorPane website = new JEditorPane("http://smo-gram.tumblr.com/");
答案 0 :(得分:2)
您可以使用Desktop
API在操作系统的默认电子表格应用中显示Excel文件。阅读How to Integrate With the Desktop上的Swing教程中的部分。
或者您可以使用以下网址中的API访问该文件的数据:Integrating excel sheet with java swing