Spawning a interactive process
Posted
by notnoop
on Stack Overflow
See other posts from Stack Overflow
or by notnoop
Published on 2010-05-17T15:51:13Z
Indexed on
2010/05/17
16:11 UTC
Read the original article
Hit count: 252
How can a Java application spawn a new interactive application (e.g. an command line editor) from Java/Scala?
When I use Runtime.getRuntime().exec("vim test")
, I would only get a Process instance, while vim
would be running in the background; rather then appear to the user.
© Stack Overflow or respective owner