jvm.cfg
file located at E:\java\jre7\lib\i386\jvm.cfg
. From your provided information, it looks like your JAVA_HOME and Path environment variables are set to a different location than where the program is trying to access the JRE configuration file. Here's a breakdown of the details: C:\Program Files\Java\jre7\lib\amd64\jvm.cfg
C:\Program Files\Java\jre7\lib\amd64\jvm.cfg
The output of...jvm.cfg
file located at E:\java\jre7\lib\i386\jvm.cfg
. From your provided information, it looks like your JAVA_HOME and Path environment variables are set to a different location than where the program is trying to access the JRE configuration file. Here's a breakdown of the details: C:\Program Files\Java\jre7\lib\amd64\jvm.cfg
C:\Program Files\Java\jre7\lib\amd64\jvm.cfg
The output of java -version
command confirms that the Java version being used is "1.7.0_21" with the 64-bit Server VM. To resolve the issue, you should ensure that the program you are trying to run is using the correct Java installation path. It seems to be expecting the Java installation in the E:\java\jre7\lib\i386\
directory. Here are a few steps you can take to troubleshoot and potentially fix this issue:E:\java\jre7\lib\i386
). This change should reflect the directory where the program is searching for the jvm.cfg
file.java.exe
and related files are located in the specified Java installation directory. By aligning the program's expected Java path with the actual Java installation on your system, you should be able to resolve the error you are encountering. Let me know if you need further assistance or clarification on any of these steps!