美文网首页
JSP中的相对Path的设置

JSP中的相对Path的设置

作者: 房东家有只狗 | 来源:发表于2019-03-21 09:55 被阅读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>

    相关文章

      网友评论

          本文标题:JSP中的相对Path的设置

          本文链接:https://www.haomeiwen.com/subject/wcwfvqtx.html