I want to know,too.

解决方案 »

  1.   

    我在开发一个与你说的类似的应用程序,我想她是在html 中设置的探索路径,通过再一个页面中
    点击一个按钮,可以调出另一个IE浏览器窗口,你试试!!
      

  2.   

    //希望对你有用.
    import java.io.*;public class OpenIe {
    public OpenIe(){
    }

    public static void main(String args[]){
     String url ="http://www.sohu.com/";
     Process op;
            try {
                op = Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler " + url);
            }
            catch(IOException _ex) { } }
    }