(String encodedStr)
| 57 | } |
| 58 | |
| 59 | public static String Decode(String encodedStr) { |
| 60 | try { |
| 61 | return URLDecoder.decode(encodedStr, "UTF-8"); |
| 62 | } catch (UnsupportedEncodingException e) { |
| 63 | logger.warn("Decode not support UTF-8"); |
| 64 | return encodedStr; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | public static Map<String, String> QueryToMap(String query) { |
| 69 | Map<String, String> result = new HashMap<String, String>(); |
no outgoing calls
no test coverage detected