java获取服务器路径

private static String WEBSERVER_DIR = null;


static {

WEBSERVER_DIR = new File(ServletActionContext.getServletContext()

.getRealPath("/")).getParentFile().getPath()

.replaceAll("\\\\", "/");

}


你可能感兴趣的:(java获取服务器路径)