I am using BufferedReader and BufferedWriter in a progect in order to export it as Jar and use it, My code using the streams is the following
br = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream("/data/score.scr")));
bw= new BufferedWriter(new FileWriter("src/data/score.scr"));
I tried to use getClass().getResourceAsStream(); inside BufferedWriter but it doest work, the program works well but it seems ... that the file read is not the one written ... I save a score (BufferedWriter) when I get to the scorepanel (BufferedReader) it is not there
all this in order to export my project as a JAR so I need to modify the second line of my core