我正在使用以下 api 从 excel 中读取数据作为表格:https ://jtablesaw.github.io/tablesaw/gettingstarted
代码如下:
XlsxReader reader = new XlsxReader();
XlsxReadOptions options = XlsxReadOptions.builder("excel/file_example_XLSX_10.xlsx").build();
try {
tab = reader.read(options);
// System.out.println(tab.print());
} catch (Exception e) {
e.printStackTrace();
}
文件file_example_XLSX_10.xlsx的大小约为 120 mb,我收到 OutOfMemoryError。
有没有办法让我只读取文件中的特定列。