How to open URL with Internet Explorer in windows in Java

1 Answer

0 votes
package javaapplication1;

import java.util.ArrayList;

public class JavaApplication1 {

    public static void main(String[] args) {

        try {

            ProcessBuilder p = new ProcessBuilder();

            ArrayList<String> arr = new ArrayList<>();
            arr.add("C:\\Program Files\\Internet Explorer\\iexplore.exe");
            arr.add("http://www.seek4info.com/");
            p.command(arr);
            p.start();

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

/*
             
run:


    
 */

 



answered Nov 27, 2016 by avibootz

Related questions

1 answer 178 views
1 answer 210 views
1 answer 166 views
1 answer 143 views
1 answer 162 views
1 answer 251 views
1 answer 145 views
...