JAVA弹出浏览器窗口

JAVA弹出浏览器窗口(方坤 www.whjava.com)
/**弹出浏览器窗口***/
@SuppressWarnings("unchecked")
public static void openURL(String url){
     try {
      Runtime.getRuntime().exec("rundll32 url.dll,FileProtocolHandler "+ url);
     }catch(Exception ex){}
}

你可能感兴趣的:(java,windows,linux,浏览器)