Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将一个参数param从传递jsp到servlet具有类似的值%xyz。
param
jsp
servlet
%xyz
当我试图通过 servlet 获得价值时,request.getParameter("param") 我没有得到任何价值。
request.getParameter("param")
相反,它是空白的(甚至不是 Null)。
可以的,请任何人解释原因。
%是 uri 中的一个特殊字符。您必须%使用 uri 编码对值进行编码。在您的情况下,%应编码为%25
%
%25