-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrowserControl.java
More file actions
45 lines (38 loc) · 1.41 KB
/
BrowserControl.java
File metadata and controls
45 lines (38 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import java.io.IOException;
public class BrowserControl {
public BrowserControl() {
}
public static boolean isWindowsPlatform() {
String s = System.getProperty("os.name");
return s != null && s.startsWith("Windows");
}
public static void displayURL(String s) {
boolean flag = isWindowsPlatform();
String s1 = null;
try {
if (flag) {
s1 = "rundll32" + " " + "url.dll,FileProtocolHandler" + " " + s;
Runtime.getRuntime().exec(s1);
return;
}
s1 = "netscape" + " " + "-remote openURL" + "(" + s + ")";
Process process = Runtime.getRuntime().exec(s1);
try {
int i = process.waitFor();
if (i != 0) {
s1 = "netscape" + " " + s;
Runtime.getRuntime().exec(s1);
}
} catch (InterruptedException interruptedexception) {
System.err.println("Error bringing up browser, cmd='" + s1 + "'");
System.err.println("Caught: " + interruptedexception);
}
} catch (IOException ioexception) {
System.err.println("Could not invoke browser, command=" + s1);
System.err.println("Caught: " + ioexception);
}
}
public static void main(String args[]) {
displayURL("http://www.javaworld.com");
}
}