List of utility methods to do Map to URL Convert
String | getUrlParamsByMap(Map get Url Params By Map if (map == null) { return ""; StringBuffer sb = new StringBuffer(); for (Map.Entry<String, Object> entry : map.entrySet()) { sb.append(entry.getKey() + "=" + entry.getValue()); sb.append("&"); return sb.toString(); |