How do I read a file in App Engine?

后端 未结 5 1543
灰色年华
灰色年华 2021-01-01 20:44

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?*/)

5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-01 21:32

    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"));
    

提交回复
热议问题