request.getContextPath()是在開發(fā)Web項目時,經(jīng)常用到的方法,其作用是獲取當(dāng)前的系統(tǒng)路徑。
getContextPath效果 2007年07月13日 星期五 下午 01:11
<% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> path IS: /jspSmartUpLoad
basePath IS: request.getScheme() IS: http request.getServerName() IS: yangm1203. request.getServerPort() IS: 8080
|
|