java正则表达式匹配文件夹名称特殊字符
Matcher matcher = Pattern.compile( "[\\u005C/:\\u002A\\u003F\"<>\'\\u007C’‘“”:?]" ).matcher( name ); while ( matcher.find() ) { }
Matcher matcher = Pattern.compile( "[\\u005C/:\\u002A\\u003F\"<>\'\\u007C’‘“”:?]" ).matcher( name ); while ( matcher.find() ) { }
