Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JDK was not found on the computer for NetBeans 6.5

I got the following message when I open the NetBeans. I have got the JDK installed, and set the bin directory in the environment. What I could do next to avoid this problem? Btw, I am using Windows 7 64 bit.

enter image description here

like image 793
william007 Avatar asked Oct 26 '12 01:10

william007


People also ask

Does NetBeans work without JDK?

You don't need to install the Java version that comes with Netbeans. You just need to select the Java installation you want to use in the Netbeans installer.

Why is there no Java in my NetBeans?

To properly use Java SE features you have to follow these steps: Choose Tools > Plugins from the main IDE's toolbar. In the Plugins dialog box, click the Installed tab and select Java SE in the list of available features. Click Activate.


2 Answers

Do the following steps to resolve the problem

  1. Ensure that the JDK is already installed.

  2. If the installer is on a CD, Copy the EXE file for the Netbeans 6.5.1 installer onto your hard disk.

  3. Note the location of the installer.

  4. Open a Command Prompt running as administrator: Go to Start button > All Programs > Accessories Right click Command Prompt Select Run as administrator

  5. In the Command Prompt use the cd command to change to the directory containing the installer.

  6. Execute the following command to extract the contents of the installer: [Note: You might need to change the name of the installer to match the one you have.]

    netbeans-6.5.1-ml-java-windows.exe --extract

  7. Execute the following command to manually execute the installer:

    java -jar bundle.jar

You will see rapid scrolling output in the Command Prompt window for a few moments, then the installer window will appear to begin the installation process.

like image 196
Bhuvan Avatar answered Sep 20 '22 15:09

Bhuvan


I use the following steps to solve the problem:

First, Make sure

“Run this program in compatibality mode for: Windows XP (Service Pack 3)” and “Run this program as an administrator” are ENABLED. 

Run in Command Prompt

C:\Users\{yourusernamehere}\Documents\Downloads\netbeans-6.5-ml-windows.exe –-javahome "C:\Program Files (x86)\Java\jdk1.6.0_18" 
like image 22
william007 Avatar answered Sep 21 '22 15:09

william007