I want to send an open source Java project with my own JRE so that it does not depend on whether it is installed or not. I will have everything in one directory, and my program will be the only user of this jvm and library class. Since Java is now open source, I think that now I can legally split the class library (rt.jar) only into the classes I need. For example, I do not use SQL, so I do not want to burden the load with the classes in the java.SQL package. This will be somewhat similar to the linking step, when the executable is created from libraries using only the methods in the call tree, which starts with main () programs. Does anyone know what tools I can use for this. Is it possible?
user127781
source
share