I want to make possible that any file inside my project can be readable by any user, considering that they wont have the same directory as me.
So i have this:
String filme = "somefile.txt"
String datastr = "";
reader = new BufferedReader( new FileReader("C:/Path"+filename));
String line = reader.readLine();
while( line != null) {
datastr += line + "\n";
line = reader.readLine();
}
Any help would be appreciated. Thanks in advance