如何使用Applet转到链接?(How to goto a link using Applet?)
优质
小牛编辑
129浏览
2023-12-01
问题描述 (Problem Description)
如何使用Applet转到链接?
解决方案 (Solution)
下面的示例演示了如何使用AppletContext类的showDocument()方法从applet转到特定网页。
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());
}
}
}
结果 (Result)
上面的代码示例将在启用Java的Web浏览器中生成以下结果。
View in Browser.