无法在linux运行时使用java代码创建文件



我正在编译在linux机器上运行Storm Topology的maven项目。

下面是Bolt类中的一个方法,这里我想在运行时创建一个文件,其中buffered Reader将从输入中收集数据并将其写入文件。

元组输入对象:包含要写入的数据
/root/data/javacode/top_output.csv:文件名。
代码中已经导入了所有IO包。

public void execute(Tuple input, BasicOutputCollector collector) {
    String sentence = input.getString(0);
    String[] process = sentence.split(" ");
    File file = new File("/root/data/jcode/top_output.csv");
    if (!file.exists()) {
        file.createNewFile();
    }
    FileWriter fw = new FileWriter(file.getAbsoluteFile());  // line no. 36
    BufferedWriter bw = new BufferedWriter(fw);  
    for (String proc : process) {
        proc = proc.trim();
        if (!proc.isEmpty()) {
            collector.emit(new Values(proc));
            bw.write(proc);    // line no. 42
        }
    }
    bw.close();
}

每当我使用mvn包编译项目时,它给出编译错误:

[INFO] --- maven-compiler-plugin:2.3.2:compile (default-compile) @ lgassStorm ---
[WARNING] File encoding has not been set, using platform encoding UTF-8, i.e. build is platform dependent!
[INFO] Compiling 4 source files to /root/data/lgassStorm/target/classes
[INFO] -------------------------------------------------------------
[ERROR] COMPILATION ERROR :
[INFO] -------------------------------------------------------------
[ERROR] /root/data/lgassStorm/src/main/java/lgaas/bolts/DataNormalizer.java:[36,19] error: unreported exception IOException; must be caught or declared to be thrown
[ERROR] /root/data/lgassStorm/src/main/java/lgaas/bolts/DataNormalizer.java:[42,13] error: unreported exception IOException; must be caught or declared to be thrown
[INFO] 2 errors

每当我注释Filewriter相关代码时,它都能成功工作。行号在上面的代码中有提到。代码有什么问题?

你需要指定execute函数抛出IOException。

public void execute(Tuple input, BasicOutputCollector collector) throws IOException {

或者可以捕获异常。这是在其中一个IO操作失败的情况下。

尝试抛出IOException或将代码包围到TryCatch块。

public void execute(Tuple input, BasicOutputCollector collector){
try{
your code...
}catch (IOException e){
e.printStackTrace ();
}
}