vote up 0 vote down star

How to start external application from Scala?

flag

38% accept rate
1  
Nice accept rate... – Zenuka Oct 15 at 12:36
@Zenuka - I need to look at that more often before bothering to answer – oxbow_lakes Oct 15 at 17:05
It doesn't matter if Vladimir accepts the answers or not. The question is valid, and may help others. – Daniel Oct 15 at 17:18

3 Answers

vote up 0 vote down

Use the Process library, which was a part of SBT but is now being separated from it. You can find it here in the Scala Tools repository.

With that, it can be as simple as:

import Process._
"find project -name *.jar" ! log
link|flag
vote up 0 vote down

There is a very good library (DSL) written for this called simple-build-tool

cat(file)  #| "grep -i scala" !
link|flag
vote up 1 vote down

Since Scala runs on the JVM, you can do this the same way as you would in Java, by using Runtime.exec(...) (look that up in the Java API documentation).

You can also use java.lang.ProcessBuilder for more control.

link|flag

Your Answer

Get an OpenID
or

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