How to open Internet Explorer in windows with Java

1 Answer

0 votes
package javaapplication1;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            ProcessBuilder p = new ProcessBuilder();

            p.command("C:\\Program Files\\Internet Explorer\\iexplore.exe");
            p.start();

        } catch (Exception e) {
            System.out.print(e.toString());
        }
    }
}

/*
             
run:


    
 */

 



answered Nov 27, 2016 by avibootz

Related questions

1 answer 207 views
1 answer 209 views
1 answer 166 views
1 answer 143 views
1 answer 162 views
1 answer 70 views
70 views asked Aug 23, 2023 by avibootz
1 answer 174 views
...