I have a file at /WEB-INF/config.txt on app engine. What is the path to the file on app engine?
/WEB-INF/config.txt
eg: new File(/*What path do i put here?*/)
new File(/*What path do i put here?*/)
In my case, I didn't have access to ServletContext - getServletContext():
This worked for me:
InputStream inputStream = new FileInputStream(new File("WEB-INF/config.txt"));