How to uri encode a string in jsp?

后端 未结 2 880
南方客
南方客 2021-02-05 20:35

if I have a string \"output\" that equals a url:

${output} = \"/testing/method/thing.do?foo=testing&bar=foo\"

in the jsp,

相关标签:
2条回答
  • 2021-02-05 20:52

    It's not directly possible with standard JSTL tags/functions. Here's a hack with help of <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>
    

    If you want to do it more cleanly, create an EL function. At the bottom of this answer you can find a basic kickoff example. You'd like to end up as:

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

    with

    public static String urlEncode(String value, String charset) throws UnsupportedEncodingException {
        return URLEncoder.encode(value, charset);
    }
    
    0 讨论(0)
  • 2021-02-05 20:56

    Try this:-

    <c:out value="${output}" escapeXml="true" />
    

    Granted, this will only escape special characters from XML.

    0 讨论(0)
提交回复
热议问题