Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have write one java project on IntelliJ idea 8.1.1.When I go to compile option of IntelliJ IDEA 8.1.1 then it shows pop-up message box, in that it shows error-

cannot determine version for JDK
Update JDK configuration.

Even though I have proper JDK version, I have jdk1.5.0 installed in my PC working properly with other environment. Please suggest any settings that I may need to change.

share|improve this question

4 Answers

I got this same error message just recently in IntelliJ IDEA 9.0.4. "Cannot Detect JDK Version", "Probably JDK installed in C:\Program Files\Java\jdk1.6.0_24 is corrupt."

I was able to solve it by removing the JDK from Project Structure | SDKs and then re-adding it.

share|improve this answer

What is the output of the "java -version" for this JDK installation? It could be that the output contains some non-standard strings before the actual version information. Such strings can be added by the environment variables on your system. IDEA may not be able to parse this output and detect the JDK version correctly.

share|improve this answer

Edit: Try the answer to this question. As they seem to be duplicates, voting to close.

share|improve this answer
Yup I have seen it already. But let me know what should I do if it didn't recognise my installed JDK, – Bhagyashri May 26 '09 at 10:35

CrazyCoder is correct. If you have some extra JAVA_FOO_BAR user or system variables set, it can interfere with IntelliJ IDEA's ability to parse the java version. Just delete those variables and try again.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.