JTable で .ods ファイルからシートを表示するにはどうすればよいですか? 私はodftoolkitのシンプルな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()
. すべての行を配列に変換するにはどうすればよいですか?