开发者

Java Compiler API NullPointerException

开发者 https://www.devze.com 2023-04-10 10:42 出处:网络
I am using this code to compile a Jav开发者_如何学JAVAa file at runtime. First of all, here is my directory tree (in Eclipse).

I am using this code to compile a Jav开发者_如何学JAVAa file at runtime. First of all, here is my directory tree (in Eclipse).

+---- src
+----- package
+------ Compile.java
+
+
+---- temp
+----- anotherpackage
+------ Temp.java (file to compile)

Here is my code where I am getting the NullPointerException (I already tried using JDK as my Standard VM in Eclipse).

public static void compile(URI path, InputStream is, OutputStream os, OutputStream err) throws IOException {
    SimpleJavaFileObject source = new CustomJavaFileObject(path, Kind.SOURCE);
    JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
    JavaCompiler.CompilationTask task = compiler.getTask(new PrintWriter(err), null, null, null, null, Arrays.asList(source));
    task.call();
}

Here is the CustonJavaFileObject:

class CustomJavaFileObject extends SimpleJavaFileObject {
    protected CustomJavaFileObject(URI uri, Kind kind) {
        super(uri, kind);
    }
}

What am I doing wrong?

EDIT:

I do not have the JDK in my PATH (and I can't add it)

Here is my stack trace:

java.lang.NullPointerException 
  at package.Compiler.compile(Compiler.java:20)
  at package.Interactive.main(Interactive.java:19)


JavaCompiler compiler = ToolProvider.getSystemJavaCompiler(); 

causes the issue. Point your JRE to be inside the JDK as unlike jdk, jre does not provide any tools.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号