例子,jsp文件绝对路径设置方法。
复制代码 代码示例:
<%
String path = request.getContextPath();
String basePath = request.getScheme() + "://"
+ request.getServerName() + ":" + request.getServerPort()
+ path + "/";//返回形式http://localhost:8080/upload/
>
调用:
复制代码 代码示例:
<%=basePath%>
在js代码里也可以直接用。