how to insert %20 in place of space in android

主宰稳场 提交于 2019-11-28 21:07:35
Sumant

Try this:

String temp = http://www.arteonline.mobi/iphone/output.php?gallery=MALBA%20-%20MUSEO%20DE%20ARTE%20LATINOAMERICANO%20DE%20BUENOS%20AIRES

temp = temp.replaceAll(" ", "%20");
URL sourceUrl = new URL(temp);

When you build your URL you should use URLEncoder to encode the parameters.

StringBuilder query = new StringBuilder();
query.append("gallery=");
query.append(URLEncoder.encode(value, "UTF-8"));

If you already have the whole URL in a String or a java.net.URL, you could grab the query part and rebuild while URLEncoding each parameter value.

voghDev

just one addition to sudocode's response:

use android.net.Uri.encode instead of URLEncoder.encode to avoid the "spaces getting converted into +" problem. Then you get rid of the String.replaceAll() and its more elegant :)

StringBuilder query = new StringBuilder();
query.append("gallery=");
query.append(android.net.Uri.encode(value, "UTF-8"));
bart

I guess you want to replace all spaces, not only white.

the simplest way is to use

"url_with_spaces".replaceAll(" ", "%20);

However you should consider also other characters in the url. See Recommended method for escaping HTML in Java

String s = "my string";
s=s.replaceAll(" ", "%20");
Paul John

Try using URIUtil.encodePath method from the api org.apache.commons.httpclient.util.URIUtil.

This should do the trick for you.

For anyone that needs space characters to be encoded as a %20 value instead of a + value, use:

String encodedString = URLEncoder.encode(originalString,"UTF-8").replaceAll("\\+", "%20")
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!