标签: java jsp servlets hyperlink request
在Servlet中,使用代码:
String requestURL = request.getRequestURL().toString();
我收到了网址:http://localhost:8080/TV/admin/adminView.do
如何动态更改此链接?
最后一个链接应为:http://localhost:8080/TV/file.txt(即http:// + server + client + file.txt)。
http:// + server + client + file.txt
答案 0 :(得分:0)
你必须看看:
How to use a servlet filter in Java to change an incoming servlet request url?
或
how to change the requestURL using filter or servlet
再见