Find the java.exe location from java [duplicate] - java

This question already has answers here:
Get path to java JRE
(3 answers)
Closed 9 years ago.
I am wondering if there is a way, from java, to find the location of the java.exe running the program?
My use case is that I am trying to have Java execute a batch script that needs JAVA_HOME to be set in the local environment. The environment that I am executing this on may not have JAVA_HOME set or even the java executable on the path, but I would assume that the JVM knows where its executable is located.

System.getProperty("java.home");
is one option. Which shows the following directory in my machine:
C:\Program Files\Java\jdk1.7.0_02\jre
Most important system properties are listed here.

The java.home property will supply the path to the currently running JRE, regardless of what is installed, or what JAVA_HOME is. See the Oracle documentation here.
System.getProperty("java.home");

Related

cordova build issue - javac - version failed to run [duplicate]

This question already has answers here:
JAVA_HOME is set to an invalid directory:
(20 answers)
Closed 4 years ago.
I am facing the issue while I build the android. I installed java jdk properly.
In path variable you have to give the both JDK and JRE path upto bin,
like this
path : ....;C:\Program Files\Java\jdk1.8.0_181\bin;C:\Program Files\Java\jre1.8.0_181\bin;
coming to JAVA_HOME give the path upto JDK folder
JAVA_HOME : C:\Program Files\Java\jdk1.8.0_181
u have given upto bin may be that's the issue.
If your cmd is open then close and open new cmd and do the operations
Thank you

run-nifi.bat : The JAVA_HOME environment variable is not defined correctly [duplicate]

This question already has answers here:
How to set java_home on Windows 7?
(18 answers)
Closed 4 years ago.
I have developed a JAVA application for signature verification and I want to develop an Apache Nifi Processor for this JAVA application.
When I want to run .bat file in cmd i.e. run-nifi.bat I get this error :
"The JAVA_HOME environment variable is not defined correctly. Instead
the PATH will be used to find the java executable."
Also I can not find my processor at http://localhost:8080/nifi
Just define JAVA_HOME system environment variable and point it to your JDK dir. More detailed answer: How to set java_home on Windows 7?

How to use environment variables in eclipse.ini? [duplicate]

This question already has answers here:
Environment variables in eclipse.ini file
(3 answers)
Closed 4 years ago.
Is it possible to use environment variables like %JAVA_HOME% within eclipse.ini?
I'd like to include the following without having to hardcode the absolute path to jdk:
-vm
%JAVA_HOME%\bin\javaw.exe
But that's not working and eclipse complains about missing jdk.
By the way: cmd echo %JAVA_HOME% shows the correct path.
It is not possible. There is already a bug opened for this.
Also see this question: eclipse.ini variables

How to start extracted eclipse [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Cannot run Eclipse; JVM terminated. Exit code=13
I downloaded Eclipse eclipse-jee-galileo-SR2-win32 in zip format then I extract the same on my harddisk.
So when I clicked on eclipse.exe I am getting following window as alert.
Though I have java 1.6_35 installed on my machine.
After googling a lot so far I am unable to rid on this.
how to start eclipse now.
same is working fine on other machine.
Check your eclipse.ini file (in the same folder as the exe). Maybe it does not point to the location where your java is installed.
Search for a line like this
-vm c:/Program Files/Java/jdk1.6.0_22/bin/javaw.exe
Make sure if your jvm is 32 bit.
you can find by running
java -version .
you have eclipse for 32-bit jvm (-arch x86).

A Java Runtime Environment or Java development kit must be available in order to run eclipse [duplicate]

This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Eclipse - no Java (JRE) / (JDK) … no virtual machine
I installed the Android SDK and it mentioned that I should download eclipse as well, but when I download and try to run the eclipse.exe, I recieve a message stating "A Java Runtime Environment or Java development kit must be available in order to run eclipse....". I do have JDK, which is the only way the Android SDK would have been installed. Any suggestions?
Set your computer's PATH (environmental variable) to the bin folder of your JDK. Here's how:
Windows 7-Start->Control Panel->System and Security->System->Advanced system settings(panel on the left)->Advanced->Environmental Variables(bottom). Under System Variables find PATH. Select it and hit edit. Point it to the bin of the jdk. If that doesn't work try adding a JAVA_HOME variable to the User variables ( hit new than enter JAVA_HOME for name and the value is the bin folder again). Hopefully that should do it. I feel your pain the same thing happened to me when I first started.

Categories