小编典典

如何在jsp中用uri对字符串进行编码?

jsp

如果我有一个等于网址的字符串“输出”:

${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)。


阅读 335

收藏
2020-06-08

共1个答案

小编典典

标准JSTL标签/功能不可能直接实现。这是借助的一个技巧<c:url>

<c:url var="url" value=""><c:param name="output" value="${output}" /></c:url>
<c:set var="url" value="${fn:substringAfter(url, '=')}" />
<p>URL-encoded component: ${url}</p>

如果您想做得更干净,请创建一个EL函数。在此答案的底部,您可以找到一个基本的启动示例。您最终会以:

<p>URL-encoded component: ${my:urlEncode(output, 'UTF-8')}</p>

public static String urlEncode(String value, String charset) throws UnsupportedEncodingException {
    return URLEncoder.encode(value, charset);
}
2020-06-08