How do I read a file in App Engine?

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

    If this is part of your application and on the classpath, you should be able to load it using this.getClass().getResource().

提交回复
热议问题