ST
Size: a a a
ST
ST
ST
VB
VB
VB
VB
println "${new File(System.getenv("JAVA_HOME")+"/lib").list().each { it }}"
VB
ST
println "${new File(System.getenv("JAVA_HOME")+"/lib").list().each { it }}"
VB
def javaLibs = new File(System.getenv("JAVA_HOME"))
javaLibs.eachDirRecurse() { dir ->
dir.eachFileMatch(~/.*.jar/) { file ->
println file.getPath()
}
}
ST
VB
VB
DS
DS