我在eclipse中设计了两个applet,当我点击一个按钮时,我想显示第二个applet的设计我该如何使用mouseClicked方法呢?
这是我的第一个代码。
JButton btnReserveASeat = new JButton("RESERVE A SEAT NOW!");
btnReserveASeat.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
new Policies ();
}
});
这是我想要在按钮中提供链接的第二个代码。
public class Policies extends JApplet {
/**
* Create the applet.
*/
public Policies() {
getContentPane().setBackground(Color.PINK);
getContentPane().setLayout(new FormLayout(new ColumnSpec[] {
ColumnSpec.decode("450px"),},
new RowSpec[] {
RowSpec.decode("29px"),
FormFactory.RELATED_GAP_ROWSPEC,
就是这样。
答案 0 :(得分:2)
public void actionPerformed(ActionEvent e) {
new Policies ();
}
应该是这样的:
URL url = new URL(getDocumentBase(), "policies.html");
// ..
public void actionPerformed(ActionEvent e) {
ThisApplet.getAppletContext().showDocument(url);
}