java NIO.2 全局问题
我有:
Path path = Paths.get("Foo.class");
Path path2 = Paths.get("Foo.java");
FileSystem fs = FileSystems.getDefault();
PathMatcher matcher = fs.getPathMatcher("glob:*.{class, java}");
matcher.matches(path); // TRUE
matcher.matches(path_2); // FALSE
如果 glob 语法 {} 意味着它匹配 .class 或 .java,为什么 path2
为 false?
来自jdk 文档:
*.{java,class} 匹配以 .java 或 .class 结尾的文件名
I have:
Path path = Paths.get("Foo.class");
Path path2 = Paths.get("Foo.java");
FileSystem fs = FileSystems.getDefault();
PathMatcher matcher = fs.getPathMatcher("glob:*.{class, java}");
matcher.matches(path); // TRUE
matcher.matches(path_2); // FALSE
Why path2
is false if the glob syntax {} means that it matches .class or .java?
From jdk documentation:
*.{java,class} Matches file names ending with .java or .class
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为
class,java
中的空格It is because of the space in
class, java