我在 Windows 7 和 Debian 中有 tomcat7。他们两个在连接器内都有 URIEncoding="UTF-8" 。我打开网址喜欢
http://myhost.com/d/P2ILfNOPL-%2BAp3YljV-axQ
Windows tomcat 给了我 %2B ,Linux 将它解码为 + 号。我想让他们以保存方式行事。如何?我的调试代码是:
response.getWriter().write(request.getRequestURI());
谢谢。