Search:

Type: Posts; User: Json

Search: Search took 0.09 seconds.

  1. Re: Is it possible to load classes at runtime that are discovered from a directory

    I've raised this as an issue and hopefully we'll be able to resolve that.

    // Json
  2. Re: Is it possible to load classes at runtime that are discovered from a directory

    I just used the URLClassLoader (Java Platform SE 6)



    final URL[] urls = { new URL("file", null, file.getAbsolutePath()) };
    final URLClassLoader classLoader = new URLClassLoader(urls,...
  3. Re: Is it possible to load classes at runtime that are discovered from a directory

    Yes, in some forum software I've written I've added the ability to drop a jar file into a plugin directory and then load that during runtime. You just need to use reflection really.

    1. Open the...
Results 1 to 3 of 3