-2

我是 Java 新手,我正在尝试使用 tableaw ( https://jtablesaw.github.io/tablesaw/ ) 进行一些数据可视化,但在导入文件期间出现 IOException(请参见下面的代码)。

我已经尝试过各种表锯的功能和方法(读取/读取多重和 XlsxReaderOptions 的各种构建器)。xls 导入导出没有很好的文档记录(还),但我尝试重新使用我在 github 中看到的 jUnit 测试。

我还检查了文件路径,java.io.File 找到了它。所以我猜错误在下面的代码中。

这里有没有人使用 tableaw 并且可以告诉我导入/导出 excel 文件的正确方法?或者通过另一个dataviz库?

import tech.tablesaw.api.Table;
import tech.tablesaw.io.xlsx.*;

[...]

public class App 
{
    [...]

    private static Table getTable(String FileName)
    {
        XlsxReader reader = new XlsxReader();
        XlsxReadOptions options = XlsxReadOptions.builder(FileName).build();
        Table tab = reader.read(options);
    return tab;

    }

错误信息:

Exception in thread "main" java.lang.Error: Unresolved compilation problem: 
    Unhandled exception type IOException

    at com.testPack.excelRun.App.getTable(App.java:30)
    at com.testPack.excelRun.App.main(App.java:22)

感谢您提供的任何帮助!

4

1 回答 1

1

您可以尝试通过以下导入解决您的问题:

import java.io.IOException;

IOException并使用 add像这样处理您的子:

private static Table getTable(String FileName)throws IOException{
        XlsxReader reader = new XlsxReader();
        XlsxReadOptions options = XlsxReadOptions.builder(FileName).build();
        Table tab = reader.read(options);
    return tab;

    }

也放入IOException你的main

于 2019-08-29T00:17:46.463 回答