1. 程式人生 > >Java 啟動IE瀏覽器開啟指定網頁

Java 啟動IE瀏覽器開啟指定網頁

package web;

import java.io.IOException;

public class IE {

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

    String str = "cmd /c start iexplore http://localhost:8080/web/index.html";
    try {
        Runtime.getRuntime().exec(str);
    } catch (IOException e) {
        e.printStackTrace();
    }
} 

}