This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center。
已关闭8年。
在我的应用程序中,我想用字符串中的%20替换空格。我尝试过这种方式,
但是它不起作用,请帮帮我。我得到了空指针异常。
首先,您要放置空字符串而不是空格。
其次,您必须将值返回到
已关闭8年。
在我的应用程序中,我想用字符串中的%20替换空格。我尝试过这种方式,
String flag1="http://74.208.194.142/admin/upload_image/1342594079_images (2).jpg";
flag1.replaceAll("", "%20");
但是它不起作用,请帮帮我。我得到了空指针异常。
最佳答案
您应该这样做:
flag1 = flag1.replaceAll(" ", "%20");
首先,您要放置空字符串而不是空格。
其次,您必须将值返回到
flag1
变量中。09-26 01:28