-
1 # 龍氏風采
-
2 # 蓉城斌哥
package com.test;import java.lang.reflect.Method;//實現開啟瀏覽器並跳到指定網址的類public class BareBonesBrowserLaunch { public static void openURL(String url) { try { browse(url); } catch (Exception e) { } } private static void browse(String url) throws Exception { //獲取作業系統的名字 String osName = System.getProperty("os.name", ""); if (osName.startsWith("Mac OS")) { //蘋果的開啟方式 Class fileMgr = Class.forName("com.apple.eio.FileManager"); Method openURL = fileMgr.getDeclaredMethod("openURL", new Class[] { String.class }); openURL.invoke(null, new Object[] { url }); } else if (osName.startsWith("Windows")) { //windows的開啟方式。 Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url); } else { // Unix or Linux的開啟方式 String[] browsers = { "firefox", "opera", "konqueror", "epiphany", "mozilla", "netscape" }; String browser = null; for (int count = 0; count < browsers.length && browser == null; count++) //執行程式碼,在brower有值後跳出, //這裡是如果程序建立成功了,==0是表示正常結束。 if (Runtime.getRuntime().exec(new String[] { "which", browsers[count] }).waitFor() == 0) browser = browsers[count]; if (browser == null) throw new Exception("Could not find web browser"); else //這個值在上面已經成功的得到了一個程序。 Runtime.getRuntime().exec(new String[] { browser, url }); } }
回覆列表
如何用JAVA技術,向一個網頁自動填入內容並顯示在瀏覽器?
package com.test;
import java.lang.reflect.Method;
//實現開啟瀏覽器並跳到指定網址的類
public class BareBonesBrowserLaunch {
public static void openURL(String url) {
try {
browse(url);
} catch (Exception e) {
}
}
private static void browse(String url) throws Exception {
//獲取作業系統的名字
String osName = System.getProperty("os.name", "");
if (osName.startsWith("Mac OS")) {
//蘋果的開啟方式
Class fileMgr = Class.forName("com.apple.eio.FileManager");
Method openURL = fileMgr.getDeclaredMethod("openURL", new Class[] { String.class });
openURL.invoke(null, new Object[] { url });
} else if (osName.startsWith("Windows")) {
//windows的開啟方式。
Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url);
} else {
// Unix or Linux的開啟方式
String[] browsers = { "firefox", "opera", "konqueror", "epiphany", "mozilla", "netscape" };
String browser = null;
for (int count = 0; count < browsers.length && browser == null; count++)
//執行程式碼,在brower有值後跳出,
//這裡是如果程序建立成功了,==0是表示正常結束。
if (Runtime.getRuntime().exec(new String[] { "which", browsers[count] }).waitFor() == 0)
browser = browsers[count];
if (browser == null)
throw new Exception("Could not find web browser");
else
//這個值在上面已經成功的得到了一個程序。
Runtime.getRuntime().exec(new String[] { browser, url });
}
}
}