我需要在执行程序时打开指定的浏览器,重定向到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;
}
}
}
}
答案 0 :(得分:0)
Desktop的浏览方法启动默认浏览器以显示URI。您可以更改默认浏览器。