Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In java, reading environment variables is done with System.getenv()

Is there a way to do this in Scala?

share|improve this question
you have a typo: it should be getenv, not getnv – dhg Apr 3 '12 at 16:16

3 Answers

up vote 8 down vote accepted

Same way:

scala> System.getenv("HOME")
res0: java.lang.String = /Users/dhg
share|improve this answer
it works, but it's really not the best option – iwein Mar 31 at 7:36
NOTE: Don't overlook the other answers - they are gems! – Jay Taylor Apr 21 at 19:47

Since Scala 2.9 you can use sys.env for the same effect:

scala> sys.env("HOME")
res0: String = /home/paradigmatic

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.

share|improve this answer

There is an object:

scala.util.Properties

this has a collection of methods that can be used to get environment info, including

scala.util.Properties.envOrElse("HOME", "/myhome" )
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.