简体   繁体   中英

Netbeans cannot find JavaFX Application classes

I'm trying to run some code snippets from my Java class in netbeans, and netbeans consistently cannot seem to recognise the application classes(no matter the code snippet) and throws up an empty Browse JavaFX Application Classes window whenever I try to build or run the application.

Here is the code I'm currently trying to run:

package examplereaderusingfilereader;

import java.io.Reader;
import java.io.FileReader;

public class ExampleReaderUsingFileReader {
    public static void main(String[] args) {
    //creates an array of character
    char[] array = new char[100];
    try {
        //creates a reader using the FileReader
        Reader input = new FileReader("input.txt");
        //checks if reader is ready
        System.out.println("Is there data in the stream? " + input.ready());
        //Reads characters
        input.read(array);
        System.out.println("Data in the stream");
        System.out.println(array);
        //closes the reader
        input.close();
    } catch(Exception e) {
        e.getStackTrace();
        }
    }
}

Try adding e.printStackTrace(); maybe you have No such file or directory

All What you need to do is extend your Main Class With "Application". Modify Your Main Class and main function Like This

public class ExampleReaderUsingFileReader extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception{
         // Your snippet code here 

        Scene scene = new Scene(new AnchorPane()); 
        //create your fxml file on the same folder of main if not exist
        Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM