Ant脚本中** / *的含义

问题描述

| 在以下Ant脚本中,
**/*
是什么意思?
<fileset dir=\"${server.src}\" casesensitive=\"yes\">
<include name=\"**/*.java\"/>    
</fileset>
    

解决方法

        “ 2”表示任何级别的子目录 即匹配
a/x.java
a/b/y.java
a/b/c/z.java
等。