访问 App Engine 中的 War/WEB-INF 文件夹中的文件
读取 App Engine 中的 war/WEB-INF 文件夹中的文件项目涉及构建一条通往资源的合适路径。为此,您有两个选择:
选项 1:ServletContext 的 getRealPath() 方法
如果 WAR 文件展开(而是一组文件),则此方法有效单个 .war 文件)。
ServletContext context = getContext(); String fullPath = context.getRealPath("/WEB-INF/test/foo.txt");
选项 2: ServletContext 的 getResource 方法
无论 WAR 文件是否展开,此方法始终有效。
ServletContext context = getContext(); URL resourceUrl = context.getResource("/WEB-INF/test/foo.txt");
或者直接获取输入流:
InputStream resourceContent = context.getResourceAsStream("/WEB-INF/test/foo.txt");
您可以通过 context 字段从 JSP 页面获取 ServletContext,或者通过 Servlet 获取 ServletContext传递到 servlet 的 init() 方法中的 ServletConfig。
以上是如何访问App Engine中War/WEB-INF文件夹中的文件?的详细内容。更多信息请关注PHP中文网其他相关文章!