JSP中的相对Path的设置

2019-03-21  本文已影响0人  房东家有只狗

<%String path = request.getContextPath(); StringbasePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%>

https://blog.csdn.net/haocm66/article/details/52998785

String path = request.getContextPath(); JSP中的相对Path的设置

https://blog.csdn.net/zhang6622056/article/details/7056605


<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

    <%

String path = request.getContextPath();

String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()

+ path + "/";

%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<base href="<%=basePath%>">

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

<title>Insert title here</title>

</head>

<body>

</body>

</html>

上一篇 下一篇

猜你喜欢

热点阅读