I open page in Internet Explorer from Java application.
How can I make sure from application is this page open complitely?
Runtime rt = Runtime.getRuntime();
Process proc = rt.exec("iexplore.exe http://www.tek-tips.com");
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] =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.