获取服务器的路径
程序员文章站
2022-05-09 13:50:01
...
1、
String contextPath = request.getContextPath();
String realPath = request.getSession().getServletContext().getRealPath("/");
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+contextPath+"/";
2、
contextPath = "/项目名称"; //获取的是项目的相对路径
realPath = F:\tomcat_home\webapps\项目名称\ //获取的是项目的绝对路径
basePath = http://localhost:8080/项目名称/ //获取的是服务的访问地址
上一篇: 洛谷 P1618 三连击(升级版) 题解
下一篇: MySQL多表联查的深入浅出