Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Closing Browser from program

Status
Not open for further replies.

olr

Programmer
Aug 28, 2001
2
US
Please help!

How can I close IExplorer window from Java program.
Browser was open from same program, but I dont realy know How can I close it.

Part of code for open is here:

Runtime rt = Runtime.getRuntime();
Process proc = rt.exec(cmd);

Where:
cmd = new String[4];
cmd[0] = "cmd.exe" ;
cmd[1] = "/C" ;
cmd[2] = "C:\\Program Files\\Plus!\\MicrosoftInternet\\iexplore.exe";
cmd[3] = "
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top