javafan13
Posts: 4
Nickname: javafan13
Registered: Jun, 2003
|
|
Re: help needed for using Runtime.getRuntime().exec
|
Posted: Jul 1, 2005 5:17 PM
|
|
Runtime.exec() is not a good choice anyway, provided that you have a choice. See http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4109888 if you have time for it. Or in two words: you can never know for sure how Runtime.exec() will react, nor if it will still work on any upgrade, patch and so on. It has only been added to the platform for cases when you don't have java implementation of the feature you need.
|
|