为什么这个字符串问题只出现在windows中?
如何替换文件分隔符?以下两种方法都不适合我。
错误是:
java.util.regex.PatternSyntaxException:索引 1 附近出现意外内部错误。
String s ="pathoffile";
if(File.separator.equals("\\"))
s= s.replaceAll(File.separator,"/");
if(File.separator.equals("\\"))
s= s.replaceAll("\\","/");