java

位置:IT落伍者 >> java >> 浏览文章

JAVA获取绝对路径的问题


发布日期:2023年09月14日
 
JAVA获取绝对路径的问题

JAVA中获取绝对路径一般有这几个方法

requestgetRealPath()// 此方法已过期不推荐使用

thisgetServletContext()getRealPath() //SERVLET中使用

thisgetServlet()getServletContext()getRealPath() // Struts中使用

requestgetSession()getServletContext()getRealPath() //Struts和SERVLET都可以使用

一般情况下使用thisgetServlet()getServletContext()getRealPath()和requestgetSession()getServletContext()getRealPath()是一样的效果但是当我们部署的一个EAR包里面有多个WAR应用包共享会话时requestgetSession()getServletContext()getRealPath()这个可能取不到你想要的这个应用的绝对路径而取到的是其他应用的绝对路径所以最好还是使用thisgetServlet()getServletContext()getRealPath()来获取绝对路径避免在这种多应用会话共享情况下绝对路径的错乱

上一篇:如何实现网页程序自动登录(java)

下一篇:JAVA经典算法32题