Java使用Applet在新窗口中打開鏈接
如何使用Applet在一個新的窗口中打開鏈接?
解決方法
下麵的例子演示了如何使用一個applet的showDocument()方法,第二個參數指定為“_blank”一個新的窗口打開特定網頁。
import java.applet.*; import java.awt.*; import java.net.*; import java.awt.event.*; public class testURL_NewWindow extends Applet implements ActionListener{ public void init(){ String link_Text = "google"; Button b = new Button(link_Text); b.addActionListener(this); add(b); } public void actionPerformed(ActionEvent ae){ Button source = (Button)ae.getSource(); String link = "http://www."+source.getLabel()+".com"; try { AppletContext a = getAppletContext(); URL url = new URL(link); a.showDocument(url,"_blank"); } catch (MalformedURLException e){ System.out.println(e.getMessage()); } } }
結果
上麵的代碼示例將產生在一個支持java的web瀏覽器,結果如下。
View in Browser.