|
|
|
|
|
by RedShift1
812 days ago
|
|
You can compile a jar to include all dependencies (like statically compiling C code), then you can just run `java -jar myprogram.jar` and it will work as long as the Java runtime is the same major version or newer than the version you compiled for. |
|