How to println the java.library.path in Groovy
I would like to println the current java.library.path I used for the current grails application, how can I do this in开发者_如何学运维 groovy?
Many thanks!
println System.properties['java.library.path']
println System.properties["java.library.path"]
精彩评论