This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I currently use the follownig code to open a browser from my application; Runtime rt = Runtime.getRuntime(); Process proc = rt.exec("c:\\Program Files\\Internet Explorer\\IEXPLORE.EXE"); What I want to do is also to be able to close this appliation from my Java application, is this possible? To take this a step further, is it possible to close any other application that is running, even if you don't know what is running? Thanks in advance James
John Dale
Ranch Hand
Joined: Feb 22, 2001
Posts: 399
posted
0
The API documentation seems to say that after Process child=Runtime.getRuntime().exec(command); you could child.destroy();