I'm need to load a file(my model) on android device. I use
FileReader fr = null;
try {fr = new FileReader(new File(path));} catch (Exception e) {}
BufferedReader reader =...
what would be the correct path for the file(like what folder do you start from). Also where would the standard place for keeping models or other text files be.