On 27 Apr 2004, <mbenson@apache.org> wrote:
> } catch (InterruptedException e) {
> process.destroy();
> + } finally {
> + try {
> + process.getInputStream().close();
> + process.getOutputStream().close();
> + process.getErrorStream().close();
> + } catch (IOException eyeOhEx) {
> }
> }
Is it save to call getXYZStream on a Process instance after it has
terminated or even been destroyed? I've never tried it and the
Javadocs don't say anything.
Stefan
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ant.apache.org
For additional commands, e-mail: dev-help@ant.apache.org
|