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