netbeans中如何通过按钮跳转页面
发布网友
发布时间:2024-01-31 02:04
我来回答
共2个回答
热心网友
时间:2024-11-30 07:48
//写了一个简陋的代码,但是还基本能说明,代码如下:
package Qq;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
public class test extends JFrame implements ActionListener {
JButton jb1, jb2;
public test() {
jb1 = new JButton("测试1");
//这里设置监听
jb1.addActionListener(this);
//设别标记
jb1.setActionCommand("jb1");
//同上
jb2 = new JButton("测试2");
//同上
jb2.addActionListener(this);
jb2.setActionCommand("jb2");
this.setLayout(new GridLayout(1, 2));
this.add(jb1);
this.add(jb2);
this.setSize(500, 500);
this.setLocation(200, 200);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
test t = new test();
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
if (e.getActionCommand().equals("jb1")) {
//这里添加你需要跳转的页面
System.out.println("我爱java1!");
}else if(e.getActionCommand().equals("jb2")){
//同上
System.out.println("我爱java2!");
}
}
}
热心网友
时间:2024-11-30 07:48
写一个点击事件,<input type="button" onclick="window.location.href=a.html" />
a.html为你想要跳转到的页面追问额。。。。使用java语言,而且是跳转到另外一个.java的窗体那种
额。。。。使用java语言,而且是跳转到另外一个.java的窗体那种