我是Java的新手,并且一直在研究一种转换器,它将采用dec数并将其转换为二进制数,反之亦然。我想实现异常处理,但很难完全理解这个概念。我希望程序捕获NumberFormatException
并抛出我在单独的类中创建的NotInBinaryException
。我能够抛出新的异常,但不确定如何成功捕获异常以显示一个JOptionPane
,它将显示在程序上,提示用户输入二进制格式的数字,同时清除错误并设置专注于存在错误的文本字段。到目前为止,这是我创建的代码。我很感激帮助我回到正轨。
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Container;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JTextField;
public class ImprovedBaseGui extends JFrame implements ActionListener
{
private JTextField txtBaseTen;
private JTextField txtBaseTwo;
private JButton btnBaseTen;
private JButton btnBaseTwo;
private JButton btnClear;
public ImprovedBaseGui()
{
this.setTitle("Base 10/2 Converter");
Container canvas = this.getContentPane();
canvas.add(createCenterPanel(), BorderLayout.CENTER);
canvas.add(createSouthPanel(), BorderLayout.SOUTH);
this.setResizable(false);
this.setSize(475, 150);
this.setLocation(800, 500);
this.setVisible(true);
this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
}
private JPanel createSouthPanel()
{
JPanel pnlSouth = new JPanel();
btnBaseTen = new JButton("Base 10");
btnBaseTen.addActionListener(this);
btnBaseTen.setToolTipText( "Use to convert Base 2 to Base 10" );
btnBaseTen.setBackground(Color.CYAN);
pnlSouth.add(btnBaseTen);
btnBaseTwo = new JButton("Base 2");
btnBaseTwo.addActionListener(this);
btnBaseTwo.setToolTipText( "Use to convert Base 10 to Base 2" );
btnBaseTwo.setBackground(Color.YELLOW);
pnlSouth.add(btnBaseTwo);
btnClear = new JButton("Clear");
btnClear.addActionListener(this);
btnClear.setBackground(Color.RED);
pnlSouth.add(btnClear);
return pnlSouth;
}
private JPanel createCenterPanel()
{
JPanel pnlCenter = new JPanel();
pnlCenter.setLayout(new GridLayout(2,2));
pnlCenter.add(wrapMeInAPanel(new JLabel ("Base 10")));
txtBaseTen = new JTextField(16);
txtBaseTen.setBackground(Color.YELLOW);
pnlCenter.add(wrapMeInAPanel(txtBaseTen));
pnlCenter.add(wrapMeInAPanel(new JLabel("Base 2")));
txtBaseTwo = new JTextField(16);
txtBaseTwo.setBackground(Color.CYAN);
pnlCenter.add(wrapMeInAPanel(txtBaseTwo));
return pnlCenter;
}
public static void main(String[] args)
{
new ImprovedBaseGui();
}
@Override
public void actionPerformed(ActionEvent e)
{
if(e.getSource() == btnClear)
{
txtBaseTen.setText("");
txtBaseTwo.setText("");
}
if(e.getSource() == btnBaseTwo)
{
try
{
txtBaseTwo.setText(Integer.toBinaryString(Integer.parseInt(txtBaseTen.getText())));
}
catch(NumberFormatException err)
{
JOptionPane.showMessageDialog(this, txtBaseTen.getText()+"");
txtBaseTen.setText("");
txtBaseTen.grabFocus();
}
}
if(e.getSource() == btnBaseTen)
{
try
{
txtBaseTen.setText(Integer.toString(Integer.parseInt(txtBaseTwo.getText(), 2)));
}
catch(NumberFormatException err)
{
throw new NotInBinaryException();
}
}
}
private JPanel wrapMeInAPanel(Component c)
{
JPanel panel = new JPanel();
panel.add(c);
return panel;
}
}
答案 0 :(得分:1)
如果您的方法无法处理二进制解析中的NotInBinaryException
,则只应抛出NumberFormatException
。但它可以处理它,你应该处理它。您在这里不需要NotInBinaryException
。
只需处理与您在NumberFormatException
案例中处理方式类似的txtBaseTen
,尽管您可能希望为两者选择更加用户友好的错误消息。
try
{
txtBaseTen.setText(Integer.toString(Integer.parseInt(txtBaseTwo.getText(), 2)));
}
catch(NumberFormatException err)
{
JOptionPane.showMessageDialog(this, txtBaseTwo.getText()+"");
txtBaseTwo.setText("");
txtBaseTwo.grabFocus();
}
答案 1 :(得分:0)
如果您坚持使用NotInBinaryException
,那么请让其他方法为您执行转换,并让它抛出NotInBinaryException
。如果您的throws
是NotInBinaryException
,则无需RuntimeException
条款。
private String getDecimalText(String binaryText) throws NotInBinaryException
{
try
{
return Integer.toString(Integer.parseInt(decimalText, 2));
}
catch (NumberFormatException err)
{
throw new NotInBinaryException();
}
}
然后用actionPerformed
方法抓住它。
try
{
txtBaseTen.setText(getDecimalText(txtBaseTwo.getText()));
}
catch(NotInBinaryException err)
{
JOptionPane.showMessageDialog(this, "Number entered was not in binary: " + txtBaseTwo.getText());
txtBaseTwo.setText("");
txtBaseTwo.grabFocus();
}