List of utility methods to do URL Unescape
String | unEscapeURL(String input) un Escape URL return input.replaceAll("%20", " "); |
String | unescapeURL(String s) unescape URL StringBuffer sbuf = new StringBuffer(); int l = s.length(); int ch = -1; int b, sumb = 0; for (int i = 0, more = -1; i < l; i++) { switch (ch = s.charAt(i)) { case '%': ch = s.charAt(++i); ... |