首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

jsf中怎么取得当前系统路径

2012-01-19 
jsf中如何取得当前系统路径如何在jsf中取当前系统路径啊象在Struts中的这样StringfilePaththis.getServle

jsf中如何取得当前系统路径
如何在jsf中取当前系统路径啊
象在Struts中的这样

    String   filePath   =   this.getServlet().getServletContext()
                                        .getRealPath( "/ ");
                        System.out.print( "当前系统路径 "+filePath);

谢谢

[解决办法]
FacesContext.getCurrentInstance().getExternalContext().getRequestServletPath();
FacesContext.getCurrentInstance().getExternalContext().getRequestPathInfo();
FacesContext.getCurrentInstance().getExternalContext().getRequestContextPath();
你自己随便选吧.

热点排行