在我执行程序时需要打开指定的浏览器,它会重定向到Mozzila Firefox

时间:2018-01-25 11:55:53

标签: java

我需要在执行程序时打开指定的浏览器,重定向到Mozzila Firefox。此浏览器无法使用我的链接,Internet Explorer是访问我的链接的完美浏览器。

public class LogsANode {

    public static void main(String[] args) throws IOException {

        Desktop d = Desktop.getDesktop();

        int i;
        Scanner sc = new Scanner(System.in);

        System.out.println("Enter the num which you want download the logs");
        for (int x = 0; x <= 15; x++) {
            i = sc.nextInt();

            switch (i) {
                case 0:
                    d.browse(new URI("link"));
                    break;
                case 1:
                    d.browse(new URI("link"));
                    break;
            }
        }
    }
}

1 个答案:

答案 0 :(得分:0)

Desktop的浏览方法启动默认浏览器以显示URI。您可以更改默认浏览器。