码迷,mamicode.com
首页 > 其他好文 > 详细

通过request获取服务器相对路径及绝对路径

时间:2019-02-28 10:40:51      阅读:274      评论:0      收藏:0      [点我收藏+]

标签:demo   apache   ring   load   路径   erp   context   pat   Servle   

一.
String scheme = request.getScheme();//http
String serverName = request.getServerName();//localhost
String port = request.getServerPort();//8080
String context = request.getContextPath();// /demo(项目名称);
string path = scheme+"://"+serverName+":"+port+context+"/"  // http://localhost:8080/demo/
二.
获取上传文件保存服务器的路径
String filePath = request.getSession().getServletContext().getRealPath("uploadFiles/pictures");
C:\Program Files (x86)\apache-tomcat-7.0\uploadFiles\pictures

 

通过request获取服务器相对路径及绝对路径

标签:demo   apache   ring   load   路径   erp   context   pat   Servle   

原文地址:https://www.cnblogs.com/fujingtao5470/p/10448553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!