我的网址路径为http://localhost:8080/welcome/this/is/a/test
我在Java中的代码行是
String domain = httpServletRequest.getServerName();
但是有了这个,我得到了“ localhost”。我也要端口号 我只想在字符串中获取“ localhost:8080”。
答案 0 :(得分:0)
可以用一行代码实现
String hostName = request.getHeader("host");
System.out.println(" HostName : " + hostName);