如何从 Jdeveloper ADF 中的相对路径读取文件?

How to read a file from a relative path in Jdeveloper ADF?

我想从我的 Jdeveloper Adf 项目中的相对路径读取一个文件,我的文件位于这样的路径“\ProjectName\ViewController\public_html\files”,我的文件是一个图像,那么我该怎么办? ,我想让我的代码在任何服务器上工作。

希望我的回答对其他人有用,

我已经使用如下代码读取文件,

        ServletContext servletCtx = ServletContext)FacesContext.getCurrentInstance().getExternalContext().getContext();


        InputStream inputStream = servletCtx.getResourceAsStream("/images/image.png");

我的项目和资源的路径是这样的

"\ProjectName\ViewController\public_html\images"

此致。