Is there a way to read a text file which is inside a package. Lets say that I want to access a file called "myTextFile.txt", which is in a package called "a".
I want to access it from a class called "MyClass" which is in the same package.
What would be the path to "myTextFile.txt"? And would I be able to use bufferedreader like this: BufferedReader in = new BufferedReader(new FileReader(PATH));