我遇到JButton
数组的问题。我想在标签框中显示按钮的值。例如,如果我点击“1”按钮,我想在JLabel
框中看到“1”,然后如果我点击“4”在JLabel
框中有“14”。
这是我的代码:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.AbstractButton;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.Border;
import javax.swing.border.TitledBorder;
public class FormSimulateur extends JFrame implements ActionListener {
JPanel panneau = new JPanel();
JPanel clavier, pannAffichage, pannAppelRacc, pannDureeTarif;
String [] tab = {"1", "2", "3","4","5","6","7","8","9","0","*","#"};
JButton [] btn_chiffre = new JButton[tab.length];
ListenForButton lfb = new ListenForButton();
JButton appel, raccrocher;
Boolean NumOperateur = false;
JLabel affichage, duree, tarif;
public FormSimulateur() {
setTitle("SIMULATEUR D'APPEL TELEPHONIQUE");
setSize(400,350);
setLocationRelativeTo(null);
setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
setResizable(false);
setVisible(true);
//panneau.setBackground(Color.lightGray);
setContentPane(panneau);
Fenetre();
}
private void Fenetre() {
//définition et paramètrage de l'écran d'affichage du numéro composé
affichage = new JLabel("0");
affichage.setHorizontalAlignment(JLabel.RIGHT);
affichage.setPreferredSize(new Dimension(255,30));
affichage.setOpaque(true);
affichage.setBackground(Color.white);
affichage.setFont(new Font("Cambria Math", Font.BOLD, 28));
affichage.setVisible(true);
//définition d'un panneau pour le clavier du téléphone
clavier = new JPanel();
clavier.setPreferredSize(new Dimension(200,200));
//définition d'un panneau pour l'affichage de l'écran
pannAffichage = new JPanel();
pannAffichage.setPreferredSize(new Dimension(260,40));
pannAffichage.setBackground(Color.WHITE);
//création des boutons chiffres
for(int i = 0; i < tab.length; i++ ){
btn_chiffre[i] = new JButton(tab[i]);
btn_chiffre[i].addActionListener(lfb);
btn_chiffre[i].setPreferredSize(new Dimension(50,40));
clavier.add(btn_chiffre[i]);
}
//creation du panneau pour les boutons Appel et Raccrocher
appel = new JButton();
appel.setPreferredSize(new Dimension(150,40));
appel.setText("Appel");
appel.setBackground(Color.GREEN);
appel.setFont(new Font("Arial", Font.BOLD,16));
appel.addActionListener(this);
appel.setVisible(true);
raccrocher = new JButton();
raccrocher.setPreferredSize(new Dimension(150,40));
raccrocher.setText("Raccrocher");
raccrocher.setBackground(Color.red);
raccrocher.setFont(new Font("Arial", Font.BOLD,16));
raccrocher.addActionListener(this);
raccrocher.setVisible(true);
pannAppelRacc = new JPanel();
pannAppelRacc.setPreferredSize(new Dimension(350,50));
//pannAppelRacc.setBackground(Color.CYAN);
//définition d'un panneau pour l'affichage de la duréé de communication et du tarif
pannDureeTarif = new JPanel();
pannDureeTarif.setPreferredSize(new Dimension(150,95));
//définition des labels Duree et Tarif
duree = new JLabel();
duree.setBackground(Color.WHITE);
duree.setPreferredSize(new Dimension(100,30));
duree.setOpaque(true);
duree.setBorder(BorderFactory.createLineBorder(Color.BLACK));
duree.setFont(new Font("Courier New",Font.BOLD,14));
tarif = new JLabel();
tarif.setBackground(Color.WHITE);
tarif.setPreferredSize(new Dimension(100,30));
tarif.setOpaque(true);
tarif.setBorder(BorderFactory.createLineBorder(Color.BLACK));
tarif.setFont(new Font("Courier New",Font.BOLD,14));
//affichage du panneau
pannAffichage.add(affichage);
pannAffichage.setBorder(BorderFactory.createLineBorder(Color.BLACK));
pannAppelRacc.add(appel);
pannAppelRacc.add(raccrocher);
pannDureeTarif.setBorder(BorderFactory.createLineBorder(Color.BLACK));
pannDureeTarif.setBorder(BorderFactory.createTitledBorder("Coût et durée"));
pannDureeTarif.add(duree);
pannDureeTarif.add(tarif);
//pannAffichage.setBorder(BorderFactory.createTitledBorder("LCD"));
panneau.add(pannAffichage, BorderLayout.NORTH);
panneau.add(clavier, BorderLayout.EAST);
panneau.add(pannDureeTarif, BorderLayout.WEST);
panneau.add(pannAppelRacc, BorderLayout.SOUTH);
}
public static void main(String[] args) {
FormSimulateur fr = new FormSimulateur();
fr.setVisible(true);
}
private class ListenForButton implements ActionListener{
public void actionPerformed(ActionEvent e) {
//String number = ((JButton) e.getSource()).getText();
String nbre = e.getActionCommand();
int i = 0;
do{
if(nbre.equals(tab[i])){
affichage.setText(nbre);
}
if (!nbre.equals(tab[i])){
nbre = affichage.getText() + nbre;
}
i++;
//affichage.setText(nbre);
}
while(i < tab.length);
}
}
@Override
public void actionPerformed(ActionEvent arg0) {
// TODO Auto-generated method stub
}
}
答案 0 :(得分:2)
除非我误解了你的要求,否则你不需要循环。只是这段代码:
private class ListenForButton implements ActionListener {
public void actionPerformed(ActionEvent e) {
String nbre = e.getActionCommand();
affichage.setText(affichage.getText() + nbre);
}
}
答案 1 :(得分:0)
使用@DuncanJone响应:
添加第一个变量更好
public class FormSimulateur extends JFrame implements ActionListener {
boolean first=true;
...
private class ListenForButton implements ActionListener {
public void actionPerformed(ActionEvent e) {
if(first){
affichage.setText(e.getActionCommand());
first = false;
}
else{
affichage.setText(affichage.getText() + e.getActionCommand());
}
}
}
}