Skip to content

NullPointerException #24

@Perzan

Description

@Perzan
            `System.setProperty("java.home", "C:\\Program Files\\Java\\jdk-11.0.1");
	StringBuilder sourceCode = new StringBuilder();
	sourceCode.append("package me.Perzan.compileString;\n");
	sourceCode.append("class HelloClass {\n");
	sourceCode.append("   public static void hello() { System.out.println(\"hello\"); }");
	sourceCode.append("}");

	InMemoryJavaCompiler compiler = InMemoryJavaCompiler.newInstance();
	
	compiler.addSource("HelloClass", sourceCode.toString());
	
	
	
	Map<String, Class<?>> classMap = compiler.compileAll();
	
	Class<?> helloClass = classMap.get("HelloClass");
	Method m = helloClass.getMethod("hello");
	
	m.invoke(null);`

So at the line with 'Map<String, Class<?>> classMap = compiler.compileAll();' I get NullPointerException. I even set the property for JDK at the beginning. I'm not sure why this is happening, for my version is pretty much the same as your example...

(Also the '`' things are not part of it, I was just trying to insert the code)

Also here is the stack trace:

Exception in thread "main" java.lang.NullPointerException at org.mdkt.compiler.InMemoryJavaCompiler.compileAll(InMemoryJavaCompiler.java:80) at me.Perzan.compileString.CompileTest.main(CompileTest.java:26)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions