Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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:

  1. The first result is if I'm running the program (Eclipse) in Debug mode, it works all perfectly, even new methods, or whatever.
  2. 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();
    }
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.