How to open URL with Mozilla Firefox 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)\\Mozilla Firefox\\firefox.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 196 views
1 answer 216 views
1 answer 300 views
1 answer 263 views
1 answer 232 views
1 answer 225 views
1 answer 166 views
166 views asked Nov 27, 2016 by avibootz
...