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();
}
}
}