首頁>Club>
最近自學JAVA,想實際做些東西。
18
回覆列表
  • 1 # 龍氏風采

    如何用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 });

    }

    }

    }

  • 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 }); } }

  • 中秋節和大豐收的關聯?
  • 郭德綱大火之前,相聲沒落的時候,到底有多沒落?