JAVA编程的文本框问题
我想用APPLET设计一个界面,然后点按钮后出现文本框,输入数字,并读取这个数据。请问这个程序该怎么编?请各位高手说的明白点,最好有例子,谢谢了~...
我想用APPLET设计一个界面,然后点按钮后出现文本框,输入数字,并读取这个数据。请问这个程序该怎么编?请各位高手说的明白点,最好有例子,谢谢了~
展开
2个回答
展开全部
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
/**
* @author wsj
* @date 2010-6-21, 04:49:50
*/
public class A extends JApplet implements ActionListener{
private JButton butnShow=new JButton("显示");
private JTextField data=new JTextField();
private JButton butnRead=new JButton("读取");
public void init(){
setLayout(null);
butnShow.setBounds(30, 20, 100, 25);
add(butnShow);
butnShow.addActionListener(this);
data.setVisible(false);
add(data);
data.setBounds(30, 50, 100, 25);
add(butnRead);
butnRead.setBounds(30,80,100,25);
butnRead.addActionListener(this);
butnRead.setVisible(false);
validate();
}
@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource()==butnShow){
if(butnShow.getText().equals("显示")){
data.setVisible(true);
butnRead.setVisible(true);
butnShow.setText("隐藏");
}else {
data.setVisible(false);
butnRead.setVisible(false);
butnShow.setText("显示");
}
}else if(e.getSource()==butnRead){
JOptionPane.showMessageDialog(this, "文本框中的值为:"+data.getText());
}
}
}
import java.awt.event.ActionListener;
import javax.swing.JApplet;
import javax.swing.JButton;
import javax.swing.JOptionPane;
import javax.swing.JTextField;
/**
* @author wsj
* @date 2010-6-21, 04:49:50
*/
public class A extends JApplet implements ActionListener{
private JButton butnShow=new JButton("显示");
private JTextField data=new JTextField();
private JButton butnRead=new JButton("读取");
public void init(){
setLayout(null);
butnShow.setBounds(30, 20, 100, 25);
add(butnShow);
butnShow.addActionListener(this);
data.setVisible(false);
add(data);
data.setBounds(30, 50, 100, 25);
add(butnRead);
butnRead.setBounds(30,80,100,25);
butnRead.addActionListener(this);
butnRead.setVisible(false);
validate();
}
@Override
public void actionPerformed(ActionEvent e) {
if(e.getSource()==butnShow){
if(butnShow.getText().equals("显示")){
data.setVisible(true);
butnRead.setVisible(true);
butnShow.setText("隐藏");
}else {
data.setVisible(false);
butnRead.setVisible(false);
butnShow.setText("显示");
}
}else if(e.getSource()==butnRead){
JOptionPane.showMessageDialog(this, "文本框中的值为:"+data.getText());
}
}
}
参考资料: 还有其他问题的话,给我发百度消息
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询