vote up 3 vote down star

I tried googling the answer, but all I found was tips on how to detect Java from a browser or the very generic way of just starting Java and see if it runs, which introduces a possibly long delay in my application. (~ two seconds when started the very first time on my machine)

I hope there is a faster way, if the following restrictions apply:

  • Only Sun JREs or JDKs
  • Only 1.6 and higher
  • Only Windows platforms
  • Not from a browser, but from a plain old Win32 executable

This detection is not meant for a public application, but for internal use on Windows platforms only.

Is there a registry path I can read or some configuration file I can parse?

flag

Do you see a delay if the JRE is not installed? And if it is installed aren't you going to run the program and accept the startup delay anyway? – finnw Aug 27 at 9:29
Not immediately. The application has many features and on startup all prerequisites are checked. Sometimes the user doesn't even get to the code path requiring Java, but still has to suffer from the delay. The users already frown upon the long startup... – DR Aug 27 at 9:38

4 Answers

vote up 4 vote down check
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment
link|flag
Perfect! – DR Aug 27 at 9:40
vote up 2 vote down

The registry will probably be the easiest route - assuming that an installer has been run. Installed versions can be found in various subkeys under:

HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Development Kit
HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment

If the user has manually configured their environment, you could check JAVA_HOME/walk the PATH variable and check the file version. Demo WSH script:

'file:  whereJava.vbs
'usage: cscript /Nologo whereJava.vbs

'find Java 6 from registry
Set objShell = CreateObject("WScript.Shell")
Wscript.Echo objShell.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\" &_
                   "JavaSoft\Java Runtime Environment\1.6\JavaHome")

'check file version of java.exe
javaHome = objShell.Environment.item("JAVA_HOME")
Set objFSO = CreateObject("Scripting.FileSystemObject")
Wscript.Echo objFSO.GetFileVersion(javaHome & "\bin\java.exe")

See GetFileVersionInfo and company. The major version numbers seem to match the Java version (5, 6). There's a finite amount you can do without invoking the JVM.

link|flag
vote up 0 vote down

Instead you can try running the command "java -version" in command prompt.

This may not actually work well if the JRE is not properly installed but copied from some other machine. A Sure shot workaround is to navigate to the JRE installation directory "C:\Program Files\Java\", navigate to the bin folder from command prompt and then run "java -version". Output will be a installation version, and all relevant information you are looking for.

link|flag
That's what I want to avoid, see my question. – DR Aug 28 at 6:25
vote up 0 vote down

There can be any number of installaed JREs and JDKs on a windows machine, but only one will have the HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment set.

You might also consider the "JAVA_HOME" and "Path" environment variables, as they will influence command-line java invocations.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.