I'm trying to load classes dynamically on runtime (well, It's reload a loaded class) and when I'm trying to load a class, I've got 2 results:
- The first result is if I'm running the program (Eclipse) in Debug mode, it works all perfectly, even new methods, or whatever.
- When I run it in Run mode in Eclipse, it says the class has been loaded but it doesnt work, and I dont know why.
I've got this code:
public void compileCommand(String string, Packet packet, int source) throws MalformedURLException {
if (PvpNetClient.commands.containsKey(Config.prefijo+string.toLowerCase())) {
removeCommand(string, packet, source);
}
String mensaje = "";
String classPath = "file://./bin/mogubot/commands/Com"+string+".class";
URL[] urlPath = { new URL(classPath) };
JavaCompiler jCompiler = ToolProvider.getSystemJavaCompiler();
List<String> options = Arrays.asList(
"-d", "./bin/",
"./src/mogubot/commands/Com"+string+".java");
int compilationResult = jCompiler.run(null, null, null, options.toArray(new String[options.size()]));
if (compilationResult == 0) {
mensaje = "Compiled the Com"+string+".java to its .class";
URLClassLoader cLoader = new URLClassLoader(urlPath);
try {
Class<ICommand> claseLoad = (Class<ICommand>) cLoader.loadClass("mogubot.commands.Com"+string);
initCommand(claseLoad, string);
} catch (ClassNotFoundException e) {
e.printStackTrace();
} finally {
try {
cLoader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
} else {
mensaje = "Couldnt compile the Com"+string+".java to its .class";
}
MessageSender.sendSourceMessage(packet, mensaje, source, this.siglaServ);
}
And a method to initialize commands:
public void initCommand(Class<ICommand> clase, String comando) {
try {
this.registerCommand(Config.prefijo+comando.toLowerCase(), (ICommand) clase.newInstance());
} catch (Exception e) {
e.printStackTrace();
}
}