I have a file at /WEB-INF/config.txt on app engine. What is the path to the file on app engine?
eg: new File(/*What path do i put here?*/)
There's some documentation at appengine how to add resources to your project. Check out the
When the resources are added to your project you can use the following code to read their content:
File f = new File("path/below/my/project/directory/config.txt");
InputStream in = new FileInputStream(f);
In the above example the 'path' directory is below your project's 'war' directory.