I'm trying to read a data file using the following:
- String filename = "/Users/myAccount/Processing/test_proj/data/lines.txt";
- BufferedReader input = new BufferedReader(new FileReader(filename));
... but it's blowing up on new FileReader() with a FileNotFound exception. This particular file is .java (not .pde), so AFAIK the dataPath() function isn't available.
Any idea on the cause? Or the cure?
1