How to open Google Chrome 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 (x86)\\Google\\Chrome\\Application\\chrome.exe");
            p.start();

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

/*
             
run:


    
 */

 



answered Nov 27, 2016 by avibootz

Related questions

1 answer 300 views
1 answer 241 views
1 answer 210 views
1 answer 225 views
1 answer 263 views
1 answer 187 views
1 answer 195 views
...