我正在尝试'\\'
用'/'
java(Android) 替换,但这似乎不起作用!
String rawPath = filePath.replace("\\\\", "/");
这有什么问题?我已经转义“\”并尝试转义“/”但没有用。原始字符串没有任何反应。
filePath = abc\\xyz(not after escaping two \\, the original string is with two \\)
rawPath = abc \ xyz
expected = abc/xyz
这样做的正确方法是什么?(另一个 Windows 文件到 Android 路径转换问题)