I am not having luck with this method, which is basically a hello world for printing file contents to the Android cat log.
try { InputStream instream = openFileInput("inputFile.txt"); InputStreamReader inputreader = new InputStreamReader(instream); BufferedReader buffreader = new BufferedReader(inputreader); String line; while (( line = buffreader.readLine()) != null) { System.out.println(line); } instream.close(); } catch (java.io.FileNotFoundException e) { e.printStackTrace(); } Using a default generated project with the Android Eclipse plugin, under what directory should this file exist? Any other considerations?