Is it possible to install Java directly on a USB flash drive so that they are written in Java to run directly from a USB flash drive and do not require Java installation on the OS on which it runs? If not, is it possible to find a local installer without downloading Java streams from the installer?

  • one
    The jre folder is next to your program. create a bat file that executes ../jre/bin/java.exe -jar myProgram - Senior Pomidor

1 answer 1

JRE does not require installation and is propagated by Copy&Paste . Many desktop Java programs are distributed as a Java program with its included JRE. For example - Maple.

Another thing is that for each platform you need your own version of JRE.

  • Thank you very much helped out. - Trapping