如何在jsp中对字符串进行uri编码?
如果我有一个等于url的字符串“output”:
${output} = "/testing/method/thing.do?foo=testing&bar=foo"
在jsp中,我如何将该字符串转换为:
%2Ftesting%2Fmethod%2Fthing.do%3Ffoo%3Dtesting%26bar%3Dfoo
用
<c:out value="${output}"/>
?我需要以某种方式在c:out中URLEncoder.encode(url)。