我有一个可以采用两种形式的字符串
第一种形式
file:///mnt/sdcard/myfolder/myfile.txt
第二种形式
/file://mnt/sdcard/myfolder/myfile.txt
而且我需要始终采用形式的字符串
/mnt/sdcard/myfolder/myfile.txt
所以我使用了替换命令
myPath=path.replace("file://", "");
myPath= path.replace("/file:/", "");
但不幸的是不起作用
和字符串 myPath 结果
file:///mnt/sdcard/myfolder/myfile.txt
怎么了?