I have the following URL:
String Url = "www.minhaUrl/pagina/meus parametros tem espaços em branco";
I need to turn it into:
String Url = "www.minhaUrl/pagina/meus%20parametros%20tem%20espaços%20em%branco";
I have the following URL:
String Url = "www.minhaUrl/pagina/meus parametros tem espaços em branco";
I need to turn it into:
String Url = "www.minhaUrl/pagina/meus%20parametros%20tem%20espaços%20em%branco";
Use the
URLEncoder.encode("meus parametros tem espaços em branco", "UTF-8");
URLEncoder is the best way to do this already that you're messing with a URL and it will handle any other case you need.
Url = Url.replaceAll(" ", "%20");