java NIO.2 全局问题

发布于 2024-11-18 06:02:28 字数 579 浏览 1 评论 0原文

我有:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尾戒 2024-11-25 06:02:28

这是因为class,java中的空格

It is because of the space in class, java

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文