Is this the same functionality provided by
HttpServletResponse.encodeURL()?

If so, the Struts html:link tag does this type of encoding. The
operative line of code is

results.append(response.encodeURL(BeanUtils.filter(hyperlink)));

The call to BeanUtils.filter is actually deprecated, and just calls 

return (ResponseUtils.filter(value));

Torgeir Veimo wrote:
> 
> I'm about to create a small taglib that does the same as
> java.net.URLEncoder, eg. like
> <url:encode>text to be encoded</url:encode>.
> 
> But do anyone of you know of any similar taglib that does the same, to
> save me some work?
> 
> --
> - Torgeir

Reply via email to