我需要用%符号替换字符串中的空格,但是我遇到了一些问题,我尝试的是:
imageUrl = imageUrl.replace(' ', "%20");
但这给我替换功能一个错误。
然后:
imageUrl = imageUrl.replace(' ', "%%20");
但是它仍然给我替换函数错误。
我尝试使用unicode符号:
imageUrl = imageUrl.replace(' ', (char) U+0025 + "20");
但是它仍然会给出错误。
有一个简单的方法吗?
String.replace(String, String) 是您想要的方法。
String.replace(String, String)
更换
imageUrl.replace(' ', "%");
与
imageUrl.replace(" ", "%"); System.out.println("This is working".replace(" ", "%"));
我建议您在Java中使用URL Encoder进行编码Strings。
URL Encoder
Strings
String searchQuery = "list of banks in the world"; String url = "http://mypage.com/pages?q=" + URLEncoder.encode(searchQuery, "UTF-8");