使用例外并重新投掷

时间:2016-04-26 16:22:30

标签: java try-catch throw throws

我对如何为我的getAmount方法执行此步骤感到困惑

此方法应读取其中一个JTextFields中的金额,并将字段条目转换为数字。 (我想我正确地做了这一步)

虽然在非数字时此方法中会发生NumberFormatException 字段条目转换为double,该方法无法处理异常 不知道正在处理哪个事务。但是,该方法必须抓住 NumberFormatException,以便在出错时不会发生运行时错误 消息显示在DOS窗口中。捕获块必须扔掉 它捕获的异常。这是重新抛出异常的示例。 Java 运行时创建异常并抛出它,但捕获它的方法却没有 有足够的信息来处理异常,所以它将它抛给那个方法 称之为。

import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.border.*;
import java.text.NumberFormat;


public class AccountApplet extends JApplet implements ActionListener
{    
  //  For West
  public JLabel  ai       = new JLabel("Account ID ");
  public JTextField  aitf = new JTextField();
  public JLabel  ab       = new JLabel("Account Balance ");
  public JTextField  abtf = new JTextField();

  //  For East
  public JButton     dp   = new JButton ("Deposit");
  public JTextField  dptf = new JTextField();
  public JButton       wt = new JButton ("Withdraw");
  public JTextField  wttf = new JTextField();

  // For South
  public JLabel  status   = new JLabel("placeholder");  


  public void init()
  {
    this.setSize(400, 90);

    //----------------------
    //  Set up the Structure
    //----------------------

    Container      c = getContentPane();
    JPanel         b = new JPanel(new BorderLayout());
    JPanel      west = new JPanel(new GridLayout(2,2));
    JPanel      east = new JPanel(new BorderLayout());
    JPanel depo_with = new JPanel(new GridLayout(2,2));



    // Add BorderLayout to the container
    c.add(b);

    // Add everything to West
    b.add(west, BorderLayout.WEST);


    west.setBorder(new TitledBorder("Display Account Information"));
    west.add(ai);
    west.add(aitf);
    aitf.setEditable(false);
    west.add(ab);
    west.add(abtf);
    abtf.setEditable(false);

    // Add everything to EAST
    b.add(east, BorderLayout.EAST);

    east.setBorder(new TitledBorder("Deposit or Withdrawl Funds"));

    east.add(depo_with, BorderLayout.EAST);

    depo_with.add(dptf);
    depo_with.add(dp);
    depo_with.add(wttf);
    depo_with.add(wt);

    dp.addActionListener(this);
    wt.addActionListener(this);

    // Add everything to SOUTH
    b.add(status, BorderLayout.SOUTH);

    refreshFields();






  }  // End intit

  public void actionPerformed(ActionEvent e)
  {

    if (e.getSource() == dp)  //  Executes if deposit was clicked
    {
      //getAmount(dptf);
      status.setText("Deposit processed");

    }    

    if (e.getSource() == wt)  //  Executes if withdraw was clicked
    {
      //getAmount(wttf);
      status.setText("Withdraw processed");
    }
  }  // End actionPerformed

  public void refreshFields()
  {
    NumberFormat fmt = NumberFormat.getCurrencyInstance();
    Account Account1 = new Account(1234, 1000.00);
    aitf.setText("" + Account1.getId());
    abtf.setText("" + fmt.format(Account1.getBalance()));
    // diplays accound id and balance in left text fields
    //should be called when the applet is first displayed and after each valid transaction
  }

  public double getAmount(JTextField tf) throws EmptyFieldException,
                                                NumberFormatException,
                                                NegativeAmountException
  {

  double withdraw = Double.parseDouble(dptf.getText());



  // Next step


    return withdraw;
  }  //  End getAmount


} // End Class

1 个答案:

答案 0 :(得分:0)

这就是你要找的东西:

public double getAmount(JTextField tf) throws EmptyFieldException,
                                            NumberFormatException,
                                            NegativeAmountException
{
    double withdraw;
    // try to parse 
    try {
        withdraw = Double.parseDouble(dptf.getText());
    } catch (Exception e) {
        // catch exception and do something about it  
        throw e;
    }
    // Next step

    return withdraw;
}  //  End