In java, reading environment variables is done with System.getenv()
Is there a way to do this in Scala?
|
In java, reading environment variables is done with Is there a way to do this in Scala? |
||||
|
Same way:
|
|||||
|
|
|
Since Scala 2.9 you can use
I think is nice to use the Scala API instead of Java. There are currently several project to compile Scala to other platforms than JVM (.NET, javascript, native, etc.) Reducing the dependencies on Java API, will make your code more portable. |
|||
|
|
|
There is an object:
this has a collection of methods that can be used to get environment info, including
|
|||
|
|
getenv, notgetnv– dhg Apr 3 '12 at 16:16