0

GUI(銀行口座)をプログラミングしています。必要なフレームを作成しましたが、JTextArea に情報を追加する際に問題に直面しています。さまざまな方法を試しましたが、まだ成功していません。

「Savings or Current」などのラジオ ボタンを選択すると、他のパネルが表示されます。そして、a/c TextField で、2 つの TextField に ID と名前を入力します。その後、Deposit または Withdraw のいずれかの別の RadioButton を選択する必要があります。次に、入金と引き出しの残高を入力する必要があります。

すべての情報を入力したら、送信ボタンをクリックします。送信をクリックすると、すべての情報が JTextArea に表示され、入金または出金するたびに情報が更新されます。そして、これが私が問題に直面しているところです。さまざまな方法で疲れましたが、失敗しました.....助けてください

以下の私のコーディングを参照してください。

    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;

    public class BankAccount implements ActionListener,ItemListener
    {
        private String id;
        private double balance;
        private String name;
        private double withdraw;
        private double deposit;

        public BankAccount(String id, double balance, String name, double withdraw, double deposit)
        {
            this.id = id;
            this.balance = balance;
            this.name = name;
            this.withdraw = withdraw;
            this.deposit = deposit;
        }

        public void deposit(double sum)
        {
            this.balance = this.balance + sum;
        }

        public void withdraw(double sum)
        {
            this.balance = this.balance - sum;
        }

        public String getId()
        {
            return this.id;
        }

        public double getBalance()
        {
            return this.balance;
        }

        public String getName()
        {
            return this.name;
        }

        public double getWithdraw()
        {
            return this.withdraw;
        }


            DefaultListModel listModel = new DefaultListModel();
            JList list = new JList(listModel);
            FlowLayout flow = new FlowLayout();
            ButtonGroup group = new ButtonGroup();
            JFrame frame = new JFrame("Lexus Bank");
            JPanel p = new JPanel();
            JPanel p2 = new JPanel();
            JPanel p3 = new JPanel();
            JPanel p4 = new JPanel();

            JRadioButton a = new JRadioButton("Savings");
            JRadioButton b = new JRadioButton("Current");
            JRadioButton c = new JRadioButton("Deposit");
            JRadioButton d = new JRadioButton("withdraw");

            JLabel l1 = new JLabel("A/C No:");
            JLabel l2 = new JLabel("A/C Name:");
            JTextField accID = new JTextField(10);
            JTextField accName = new JTextField(10);

            JLabel l3 = new JLabel();
            JLabel l4 = new JLabel();
            JLabel l5 = new JLabel("Amount: " );
            JLabel l6 = new JLabel("Current \n Amount: ");
            JLabel l7 = new JLabel();
            JTextField amount = new JTextField(10);
            JButton button = new JButton("Submit");

            JTextArea area = new JTextArea(10,30);              


        public BankAccount() 
        {
            //Setting values for JFrame
            frame.setSize(800,600);
            frame.add(p);
            frame.add(p2);
            frame.add(p3);
            frame.add(p4);
            frame.setVisible(true);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

            //Adding the buttons in group
            group.add(a);
            group.add(b);
            group.add(c);
            group.add(d);

            //Setting value for panel 1
            frame.getContentPane().setLayout(flow);
            p.setPreferredSize(new Dimension(100,100));     
            p.setLayout(new GridLayout(2,1));
            p.add(a);
            p.add(b);
            p.setBorder(BorderFactory.createTitledBorder(
                BorderFactory.createEtchedBorder(),"A/C Type"));

            //Setting value for panel 2
            p2.setPreferredSize(new Dimension(300,100));
            p2.setLayout(new GridLayout(4,3));
            p2.add(l1);
            p2.add(accID);
            p2.add(l2);
            p2.add(accName);
            p2.setBorder(BorderFactory.createTitledBorder(
                BorderFactory.createEtchedBorder(),"Account Details")); 
            p2.setVisible(false);

            //Setting value for panel 3
            p3.setPreferredSize(new Dimension(300,150));
            p3.setLayout(new FlowLayout());
            p3.add(l3);
            p3.add(c);
            p3.add(l4);
            p3.add(d);
            p3.add(l5);

            p3.add(amount);
            p3.add(button);
            p3.setBorder(BorderFactory.createTitledBorder(
                BorderFactory.createEtchedBorder(),"Transaction"));
            p3.add(l6);
            p3.setVisible(false);

            //Setting value for panel 4
            p4.setLayout(new GridLayout(1,2));
            p4.add(area);
            p4.setBorder(BorderFactory.createTitledBorder(
                BorderFactory.createEtchedBorder(),"Transaction History"));
            p4.setVisible(false);

            //Creating Actions
             a.addItemListener(this);
             b.addItemListener(this);
             c.addActionListener(this);
             d.addActionListener(this);

             button.addActionListener(this);

        }

        public void actionPerformed(ActionEvent e)
        {

            Object source = e.getSource();
            if(source == button)
            {
                if(c.isSelected())
                {
                    String item = area.getText();

                    listModel.addElement(item);
                }

            }       
        }


        public void itemStateChanged(ItemEvent e)
        {
            Object source = e.getSource();
            if(source == a)
            {
                p2.setVisible(true);
                p3.setVisible(true);
                p4.setVisible(true);
            }
            if(source == b)
            {
                p2.setVisible(true);
                p3.setVisible(true);
                p4.setVisible(true);
            }


        }


    } 

//Driver Class to run the program
public class BankAccount_Test {

    public static void main(String args[]) 
    {
        BankAccount Test = new BankAccount();
    }


}
4

2 に答える 2

0

JTextArea を public に.setText()して、テキストを変更したいときに呼び出します。

public JTextArea textArea = new JTextArea();

その後、次のようなメソッドを追加できます。

public void setText() {

    textArea.setText("Type something here...");
}
于 2013-06-03T17:12:12.427 に答える
0

私のアドバイスを受け入れるなら、クラスを 2 つのクラスに分けて OOP の概念を使用してください

  1. アカウント
  2. Bank (メインクラス)

このようにして、プログラムに多くのアカウントがあり、各アカウントの情報がオブジェクトに保存されます。

class Accounts{
private String id;
    private double balance;
    private String name;
    private double withdraw;
    private double deposit;
    //parametric Constructor
    public Accounts(String id,String name, double balance,double withdraw,double deposit){
        setId(id);
        setName(name);
        setBalance(balance);
        setWithdraw(withdraw);
        setDeposit(deposit);
    }
   //Default Construcor:
   //Highly recommended having it because you have a parametric constructor
   public Accounts(){
    //...
   }

/*
Don't forget setters and Getter
........ 
*/

    @Override
    public String toString(){
        return "ID: "+getId()+"\n"
                +"Name: "+getName()+"\n"
                +"Balance: "+getBalance()+"\n"
                +"Withdraw: "+getWithdraw()+"\n"
                +"Deposit: "+getDeposit()+"\n";
    }
} 

そして、これがあなたのメインクラスになります:

import java.util.List;
import java.util.ArrayList;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class Bank {
    private List<Accounts> list ;
    private JButton submit;
    //default Constructor
    public Bank(){
        list = new ArrayList<Accounts>();
        submit = new JButton("Submit");
        submit .addActionListener(this);
        /*
        will be alot of code if I create the whole frame 
        but suppose you have created your frame */
    }
    public void actionPerformed(ActionEvent ev){
      if(ev.getSource()==submit){
         Accounts ac = new Accounts(); 
         ac.setId("id.getText()");
         ac.setName("name.getText()");
        //...
        textArea.setText(ac.toString());//see it's easy 
        list.add(ac);
      }
    }
}
于 2013-06-03T17:50:51.310 に答える