位置:首页 > Java技术 > java实例在线教程 > Java使用Applet跳转到一个链接

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.