Home > Archive > Java Help > May 2004 > Process handling with Runtime.exec()
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Process handling with Runtime.exec()
|
|
| Natanael Mignon 2004-05-23, 5:35 pm |
| Good evening to you,
what I am trying to do is start an external process, let it live and
destroy it later on (by call of a method, i.e. when it is not needed
anymore). Now this process is a ssh commandline opening a ssh-tunnel
over which I want to communicate. After this communication is done, I'd
like to end the ssh-process.
At the moment I try it this way:
Process proc = null;
....
proc = Runtime.getRuntime().exec(sshCommandLine);
....
(method invoked for closing)
proc.destroy();
Unfortunately, I keep getting a NullPointerException from proc.destroy()
- the process seems to have disappeared (but in fact it is still there).
I need to keep track of the process - but I cannot get a pid or
something like that back from Runtime.exec() nor could I find any other
useful Classes or Methods helping me there.
Furthermore there is no way telling, whether the exec() has been
successful at all, I think. Asking for the returnValue tells me the
process has not yet exited. Humm.
Any ideas and help is highly appreciated. :)
Kind regards
--
- Nat
www.bleeding.de | www.metal-germany.de
-= Bleeding for Metal | c/o Madhouse Of Cain =-
-= P.O. Box 39 23 | 30039 Hannover | Germany =-
| |
| Gordon Beaton 2004-05-24, 3:44 am |
| On Sun, 23 May 2004 22:05:52 +0200, Natanael Mignon wrote:
> Now this process is a ssh commandline opening a ssh-tunnel over
> which I want to communicate. After this communication is done, I'd
> like to end the ssh-process.
>
> At the moment I try it this way:
>
> Process proc = null;
> ...
> proc = Runtime.getRuntime().exec(sshCommandLine);
> ...
> (method invoked for closing)
> proc.destroy();
>
> Unfortunately, I keep getting a NullPointerException from
> proc.destroy()
> - the process seems to have disappeared (but in fact it is still
> there).
If proc.destroy() causes NullPointerException, then I am certain that
proc is null. This has nothing to do with whether the child process is
still running, it has only to do with your handling of the "proc"
variable itself.
> I need to keep track of the process - but I cannot get a pid or
> something like that back from Runtime.exec() nor could I find any
> other useful Classes or Methods helping me there. Furthermore there
> is no way telling, whether the exec() has been successful at all, I
> think. Asking for the returnValue tells me the process has not yet
> exited. Humm.
The child process itself can tell you its pid. One simple way is to
run ssh from a script like this one (call this script from
Runtime.exec()):
#!/bin/sh
echo $$
exec ssh "$@"
The first line you read from proc.getInputStream() will contain the
pid of the child process.
However there are two simple ways to terminate the ssh process:
1. close its stdin stream (proc.getOutputStream().close())
or
2. send a newline followed by ~. (tilde dot).
(1) may not work in all cases, for example if ssh needs to wait for
forwarded X11 connections to terminate.
/gordon
--
[ do not email me copies of your followups ]
g o r d o n + n e w s @ b a l d e r 1 3 . s e
| |
| Natanael Mignon 2004-05-24, 5:33 am |
| Hi Gordon,
Gordon Beaton wrote:
> If proc.destroy() causes NullPointerException, then I am certain that
> proc is null. This has nothing to do with whether the child process is
> still running, it has only to do with your handling of the "proc"
> variable itself.
Mh, I can hardly imagine that, but that may just be a problem of my
imagination (as it obviously is true). ;)
[...]
> However there are two simple ways to terminate the ssh process:
Thanks a lot, very good ideas!
Kind regards
--
- Nat
www.bleeding.de | www.metal-germany.de
-= Bleeding for Metal | c/o Madhouse Of Cain =-
-= P.O. Box 39 23 | 30039 Hannover | Germany =-
|
|
|
|
|