Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 JSF 应用程序,我想启动一个位于我的 Web 项目中的脚本,如果不从 c:..... 开始路径,我怎么能做到这一点,有没有办法获得一个根路径JSF 应用程序?
如果您的意思是在您的网页中运行的脚本,那么/就是您的应用程序的根目录。
/
ExternalContext ec = FacesContext.getCurrentInstance().getExternalContext(); String webContentRoot = ec.getRealPath("/")
如上图,首先初始化ExternalContext对象。然后调用对象的getRealPath("/")方法来获取应用程序的根路径。
getRealPath("/")