How to open URL with Google Chrome 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 (x86)\\Google\\Chrome\\Application\\chrome.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 220 views
1 answer 236 views
1 answer 248 views
1 answer 177 views
1 answer 203 views
1 answer 215 views
1 answer 191 views
...