我正在我的客户端应用程序中动态编译代码。当我使用 Java Web Start 启动应用程序时,出现异常。该异常仅在通过 Java Web Start 运行时发生。
//The exception
evolver.core.model.change.execution.ExecutionException: Compilation failed!
DynamicComparator.java:2: package evolver.core.model.i does not exist
import evolver.core.model.i.IDefaultObject;
^
DynamicComparator.java:9: cannot find symbol
symbol : class PropertyBag
location: class DynamicComparator
PropertyBag b2 = new PropertyBag(dob2);
^
上面的 PropertyBag 应该由 JNLPClassloader 提供,因为它是 JWS 下载的文件之一的一部分
导致问题的代码如下所示。
public static int compile(String javaFileName) {
ByteArrayOutputStream os = new ByteArrayOutputStream();
PrintWriter w = new PrintWriter(os);
int res = com.sun.tools.javac.Main.compile(new String[]{"-d", "./", javaFileName}, w);
if (res != 0)
throw new ExecutionException("Compilation failed!" + "\n\n" + os.toString());
return res;
}
任何帮助将不胜感激!