0

我正在尝试使用 processingEnv.getFiler() 创建源文件。但我没有看到任何源文件被创建。下面是我正在使用的代码:

public void javaPoetEg() {
  Filer filer = super.processingEnv.getFiler();
  MethodSpec main = MethodSpec.methodBuilder("testFiler")
    .addModifiers(Modifier.PUBLIC)
    .returns(void.class)
    .addParameter(String[].class, "args")
    .addStatement("$T.out.println($S)", System.class, "Hello, JavaPoet!")
    .build();

  TypeSpec helloWorld = TypeSpec.classBuilder("HelloWorld")
    .addModifiers(Modifier.PUBLIC, Modifier.FINAL)
    .addMethod(main)
    .build();


  JavaFile javaFile = JavaFile.builder("com.ankit.annotation", helloWorld)
    .build();

  try{
    javaFile.writeTo(filer);
  } catch (IOException e) {
    e.printStackTrace();
  }
}

然后在Annotation处理器的重写函数process()中调用函数javaPoetEg。我在这里做错了什么?

4

2 回答 2

0

这部分:javaFile.writeTo写入 aFile或 a PrintStream。所以你可以做这样的事情:

File file = new File("/target/directory");
javaFile.writeTo(file); // this will make a new File with all the data you added

或者:

javaFile.writeTo(System.out) // this will print the file representation in the console

希望这可以帮助。干杯。

于 2020-02-05T18:31:14.220 回答
0

我建议你看看Filer应该如何工作。Javadoc
源文件的位置可能取决于您通过命令行指定的参数,或者您必须检查默认generated目录。

于 2019-02-10T10:38:21.130 回答