web项目如何拼凑项目资源路径

2019-02-13  本文已影响0人  香蕉是世界上最好吃的水果

在jsp中写了如下代码:


<%

    String path1=request.getScheme();

    String path2=request.getServerName();

    int path3=request.getServerPort();

    String path4=request.getContextPath();

    System.out.println(path1);

    System.out.println(path2);

    System.out.println(path3);

    System.out.println(path4);

    System.out.println("----------");

%>

控制台输出如下:


http

localhost

8080

/pro_1000_war_exploded

----------

即在项目中可使用如下拼凑的链接


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

上一篇 下一篇

猜你喜欢

热点阅读