Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
java.lang.Object | +----java.lang.Process
exec
methods return an
instance of a subclass of Process
that can be used to
control the process and obtain information about it.
The subprocess is not killed when there are no more references to
the Process
object, but rather the subprocess
continues executing asynchronously.
Method Summary | |
void | destroy()
|
int | exitValue()
|
InputStream | getErrorStream()
|
InputStream | getInputStream()
|
OutputStream | getOutputStream()
|
int | waitFor()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
public abstract OutputStream getOutputStream()
public abstract InputStream getInputStream()
public abstract InputStream getErrorStream()
public abstract int waitFor() throws InterruptedException
waitFor
was
interrupted.public abstract int exitValue()
public abstract void destroy()
Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |