我正在编译在linux机器上运行Storm Topology的maven项目。
以下是Bolt类中的方法,这里我想在运行时创建一个文件,其中缓冲的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 package 编译项目时,都会出现编译错误:
[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相关的代码时,它都能成功运行。行号在上面的代码中提到。 代码有什么问题?
答案 0 :(得分:0)
您需要指定函数execute抛出IOException。
public void execute(Tuple input, BasicOutputCollector collector) throws IOException {
或者您可以捕获异常。这是因为其中一个IO操作失败。
答案 1 :(得分:0)
尝试抛出IOException或将代码包围到TryCatch Block。
public void execute(Tuple input, BasicOutputCollector collector){
try{
your code...
}catch (IOException e){
e.printStackTrace ();
}
}