去除json字符串中url地址的反斜杠

后端上传图片时有个很蛋疼的设定需要验证url。
发现url图片会自动添加转义字符如下
www.baidu.com/img/flexible/logo/pc/result.png
需要还原处理

String url="www.baidu.com/img/flexible/logo/pc/result.png";
String new=url.replaceAll("\\/", "\/");
完成

你可能感兴趣的:(去除json字符串中url地址的反斜杠)