Here you can find the source of convertURL(String url)
public static String convertURL(String url) throws UnsupportedEncodingException
//package com.java2s; //License from project: Open Source License import java.io.UnsupportedEncodingException; public class Main { public static String convertURL(String url) throws UnsupportedEncodingException { String var1 = java.net.URLDecoder.decode(url, "ASCII"); String var2 = var1.replaceAll("%2C", ","); return var2; }/*from w w w.jav a 2 s .c o m*/ }