1 16 package org.apache.taglibs.string; 17 18 import java.net.URLEncoder ; 19 import javax.servlet.jsp.JspException ; 20 21 26 public class EncodeUrlTag extends StringTagSupport { 27 28 public EncodeUrlTag() { 29 super(); 30 } 31 32 33 public String changeString(String text) throws JspException { 34 return URLEncoder.encode(text); 35 } 36 37 public void initAttributes() { 38 39 } 40 41 42 } 43 | Popular Tags |