This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 271087

Summary: BUILD SUCCESSFUL (total time: 0 seconds) but not result.
Product: ide Reporter: dee5
Component: WelcomeAssignee: Stanislav Aubrecht <saubrecht>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 8.2   
Hardware: PC   
OS: Windows 7   
Issue Type: DEFECT Exception Reporter:

Description dee5 2017-07-13 13:04:39 UTC
I recently installed Netbeans 8.2 with JDK 8 on Windows 7 Enterprise 64-bit OS. Started the installation with jdk-8u131-windows-x64.exe, which was successful. After that tried to install netbeans-8.2-javase-windows.exe, which gave me error stating could not find JDK. After searching over the internet I could get Netbeans to install from command prompt with netbeans-8.2-javase-windows.exe --jdkhome "C:\Program Files\Java\jdk1.8.0_131", Netbeans8.2 installation was successful.
Wrote a simple helloapp program: 
package helloapp;

/**
 *
 * @author dee
 */
public class Helloapp {

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
        System.out.println("hello");
    }
    
}

When I run this project by any means Run Main project, F6, right click run file gives me output as :

run:
BUILD SUCCESSFUL (total time: 0 seconds).

I have worked with previous version 8.1, and have never had problem. Wonder what is missing here. Could give a resolution.
Comment 1 dee5 2017-07-16 21:35:49 UTC
Will I get any response for this issue?