2

I want that when button is clicked using JFileChooser, filedialogneed to be opened and when excel file is selected it need to be loaded in JTable can anyone please help how to import excel file into jtable?

4

1 回答 1

2

这里有一些有用的链接/教程供您使用。

在 Java Swing 应用程序中导入 Excel (.xls)

博客

有几个开源库可用于读取Apache POI 等 Excel 文件。

将 excel 文件读入某种数据结构后,可以将其写入 a DataModelfor a JTable。或者,您可以编写一个DataModel从 excel 文件动态读取的自定义程序,但是一旦您了解了您选择的 excel 文件读取库,我将分别采取这两个步骤并增加复杂性。

于 2013-05-25T09:23:30.807 回答