Skip to content
Advertisement

Load a file from src folder into a reader

I would like to know how can I load a file lol.txt from src folder into my close method. The code so far:

JavaScript

Console error output on initiation:

JavaScript

Advertisement

Answer

If you like to load the file from inside a jar file (i.e. from classpath) please see this answer for more options on how to get an InputStream. In the code below I have left-out exception handling and removed your Random related code.

JavaScript

Edit: It seems that you are either doing something wrong with your folder structure or you are using a wrong package/file name. Just to be clear. At the moment you seem to have a class called main under a main package. Your folder structure should be something like this:

JavaScript

When you compile, your lol.txt file (btw those are lowercase L’s not the digit 1 right?) should be copied under /bin/main/ folder

If this is the case then use the code like this: InputStream in = getClass().getClassLoader().getResourceAsStream("main/lol.txt");

If your folder structure is different please change accordingly

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement