Environment variables can be easily accessed with Groovy with getenv() method as shown below.
def env = System.getenv()
//Print all the environment variables.
env.each{
println it
}
// You can also access the specific variable, say 'username', as show below
String user= env['USERNAME']
Friday, January 30, 2009
Read Environment Variables with Groovy
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment
I love to entertain onymous user Comment !