Java使用Applet跳轉到一個鏈接
如何使用Applet跳轉到一個鏈接?
解決方法
下麵的例子演示了如何使用applet AppletContext類的showDocument()方法跳轉一個特定的網頁。
import java.applet.*; import java.awt.*; import java.net.*; import java.awt.event.*; public class tesURL extends Applet implements ActionListener{ public void init(){ String link = "yahoo"; Button b = new Button(link); b.addActionListener(this); add(b); } public void actionPerformed(ActionEvent ae){ Button src = (Button)ae.getSource(); String link = "http://www."+src.getLabel()+".com"; try{ AppletContext a = getAppletContext(); URL u = new URL(link); a.showDocument(u,"_self"); } catch (MalformedURLException e){ System.out.println(e.getMessage()); } } }
結果
上麵的代碼示例將產生在一個支持java的web瀏覽器,結果如下。
View in Browser.