[Solved] How to apply Java patches? [closed]


There are many ways to extend functionality of the already developed Java application.

You can for example use external non-runnable *.jar files with some extra classes. To do so, you have to first implement proper “uploading” functions in your app, e.g. by using custom ClassPath objects, which is nicely described here, or you can try to use multi URLClassLoaders, which is described here.

There is also another approach, which allows you to call external methods in form of a String, but I haven’t tested it yet, altough you can read about it here.

solved How to apply Java patches? [closed]