在java程序中获得Tomcat下的webapps绝对路径的程序怎么写?

2024年11月18日 08:37
有3个网友回答
网友(1):

jsp中:request.getContextPath()
servlet、action中:
HttpSession session = request.getSession();
ServletContext application = session.getServletContext();
String serverRealPath = application.getRealPath("/") ;

网友(2):

File f = new File(getClass().getResource("/").getPath());
f = new File(f.getPath().replace("%20"," ") + "/databasePool.conf");

%20代表空格!

网友(3):

就是\啊