這篇文章主要介紹了jsp文件絕對路徑的設置方法,需要的朋友可以參考下
代碼如下: <% String path = request.getContextPath(); String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";//返回形式http://localhost:8080/upload/ > 調用: 代碼如下: <%=basePath%> 在js代碼裡也可以直接用