I know that some people have already encountered this problem, but I am still unable to solve it.
Here is my code:
import java.io.*;
public class MainClass
{
public static void main( String[] args )
{
BufferedReader br = new BufferedReader(new FileReader("dump.txt"));
String line;
int i = 0;
int j = 0;
while((line = br.readLine()) != null){
// And so on...
Basically, I copied my text file in the project directory, in a subdirectory (specifying the path), in the workspace main directory, but Eclipse continues to throw a FileNotFoundException
. Besides, I have already tried with refreshing the project files in the left column, but without results.