How do I read a file in App Engine?

后端 未结 5 1641
灰色年华
灰色年华 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:25

    This worked for me:

    servletContext.getResourceAsStream("/WEB-INF/config.txt")

提交回复
热议问题