Here you can find the source of cleanUrl(String url)
public static String cleanUrl(String url)
//package com.java2s; //License from project: Open Source License public class Main { public static String cleanUrl(String url) { return url.replace("\"", ""); }//from w ww . j av a2 s .c o m }