What is java path?
Java path refers to the location of the Java executable file in the system, usually Java installation path\jdk\bin\java.exe.
In the bin path, there are not only java.exe files, but also javaw.exe and javaws.exe files, which are also Java executable files.
There is another difference between the two running modes of java.exe and javaw.exe. After java runs the GUI, it blocks there until the window is closed. After javaw runs the GUI, you can directly run the next command.
javaws.exe process is suitable for starting programs configured through the web. In short, it is used in web applications.Summary:
java.exe is used to start the window console console programjavaw.exe is used to start the GUI programjavaws.exe is used for web programs. Recommended related articles and tutorials:The above is the detailed content of What is java path?. For more information, please follow other related articles on the PHP Chinese website!