直接通过正则表达式进行替换即可(备注:反斜杠为"\",正斜杠为"/")
代码如下:
public class Test {
public static void main(String[] args) {
String path = "D:\\FTP\\admin\\bird.gif";//文件路径,双斜杠输出的是一个斜杠
System.out.println(path);//打印路径
//JAVA中正则表达式,用"\\\\"表示"\"
path = path.replaceAll("\\\\", "/");
System.out.println(path);//打印路径
}
}
输出结果为:
D:\FTP\admin\bird.gif
D:/FTP/admin/bird.gif