Siva
Siva

Reputation: 9101

Eclipse not opening as JRE is not found

I am using eclipse Keepler till yesterday it was opening and I was able to use it but today it is not opening and getting this error.

enter image description here

googled but found asnwers that can be applied only after eclipse is opened but my problem is eclipse is not opening.

Please advice me what to be done between I am using eclipse keepler to develop android applications.

Thanks in advance Siva

Upvotes: 0

Views: 137

Answers (2)

Shailendra Madda
Shailendra Madda

Reputation: 21551

check your java path in eclipse.ini (configuration settings) file which is located at your eclipse path

the first line should be:

-vm
C:/Program Files/Java/jdk1.7.0/bin/javaw.exe

Upvotes: 2

kai
kai

Reputation: 534

In the directory of your eclipse there is a file called 'eclipse.ini'. open it with a notepad and add the vm-path. for example:

-vm
c:/Program Files/Java/jdk1.7.0_25/bin/javaw.exe

Maybe it works

Upvotes: 2

Related Questions