Caysson
Caysson

Reputation: 21

Projects wont run on Netbeans 8.2

I made a simple project on NetBeans 8.2 and for some reason, It won run my project. The symbol for the run button is unclickable.

I've clicked the run on the menu bar but it's still not working for me.

public class FirstFile {

    public static void main(String[] args) {
        System.out.println("Hello World");
    } 

}   

//I tried using this command on my project. Just to test.

Upvotes: 1

Views: 154

Answers (2)

Shaik Bajivali
Shaik Bajivali

Reputation: 167

Right click on the file-->Run File

Upvotes: 2

INDRAJITH EKANAYAKE
INDRAJITH EKANAYAKE

Reputation: 4294

Another project might be already running in your NetBeans, enter image description here

Click the button below to stop the execution of the current project and then try to run your programme. Or else you can close NetBeans and reopen it and then run your programme.

Upvotes: 0

Related Questions