我正在android中做一个服务调用功能。在以下 URL(String) 中,我需要将" "
(space)替换为%20
http://dli.ircms.in/complaint.php?complaintno=sarojini nagar/06022014/4
我试过了
URl.replace(" ", "%20")
URl.replaceAll(" ", "%20")
URL sourceUrl = new URL(url);
url = URLDecoder.decode(url, "UTF-8");
但它没有改变我不知道为什么。
请帮我..