1

如何在 JTable 中查看 .ods 文件中的工作表?我正在使用 odftoolkit simple api,这就是我打开文件的方式

      String filepath;
      if (openfile.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
        filepath = openfile.getSelectedFile().getAbsolutePath();
        try {
            doc = SpreadsheetDocument.loadDocument(filepath);
        } catch (Exception e) {
            JOptionPane.showMessageDialog(null,
                    Locale.getString("fileError.message"),
                    Locale.getString("fileError.title"),
                    JOptionPane.ERROR_MESSAGE);
            return;
        }

这时我得到每一行doc.getTableList().get(0).getRowList()。我怎么能把每一行变成数组?

4

1 回答 1

2

我怎么能把每一行变成数组?

不。相反,使用ODF API提供的方法构建一个TableModel实现基本方法的方法,如此处所示

@Override
public String getColumnName(int col) {…}

@Override
public int getColumnCount() {…}

@Override
public int getRowCount() {…}

@Override
public Object getValueAt(int row, int col) {…}
于 2013-08-05T20:47:27.933 回答