
September 29th, 2000, 06:42 AM
|
|
Contributing User
|
|
Join Date: Sep 2000
Posts: 35
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
|
Assuming the app is command-line driven, you could set up your commandline as a String[], and execute it with
Process p=Runtime.getRuntime().exec(stringArray);
and retrieve the results with something like
BufferedReader results=new BufferedReader(new InputStreamReader(p.getInputStream()));
and use readln to read from that.
Success, Ton
|