在Servlet与JSP中取得当前文件所在的相对路径与绝对路径
发表于:2007-07-04来源:作者:点击数:
标签:
"); String strPathFile = request.getSession().getServletContext().getRealPath(request.getRequestURI()); System.out.println("文件的绝对路径:" + strPathFile + "
"); String strDirPath = new File(request.getSession().getServletContext().getRealPath(request.getRequestURI())).getParent(); System.out.println("目录的绝对路径:" + strDirPath + "
"); 文件名不能包括以下字符:/:*?"<>|
原文转自:http://www.ltesting.net