我来我网
https://5come5.cn
 
您尚未 登录  注册 | 菠菜 | 软件站 | 音乐站 | 邮箱1 | 邮箱2 | 风格选择 | 更多 » 
 

本页主题: [java ]一个怎么也找不着的错误,求达人帮忙(已解决) 显示签名 | 打印 | 加为IE收藏 | 收藏主题 | 上一主题 | 下一主题

chenpeng



性别: 帅哥 状态: 该用户目前不在线
头衔: 任重道远 驰骋不息
等级: 栋梁之材
家族: 考研俱乐部
发贴: 602
威望: 5
浮云: 1195
在线等级:
注册时间: 2006-10-17
最后登陆: 2009-03-14

5come5帮你背单词 [ electrician /ilek'triən/ n. 电工,电气技师 ]


[java ]一个怎么也找不着的错误,求达人帮忙(已解决)

//java exception test
import java.awt.*;
import java.awt.event.*;
import java.text.DecimalFormat;
import javax.swing.*;

public class DividByZeroTest extends JFrame
                  implements ActionListener{
    private JTextField inputField1,inputField2,outputField;
    private int number1,number2;
    private double result;
   
    public DivideByZeroTest(){
        super( "Excetion Test Program" );
        Container container = getContentPane();
        container.setLayout( new GridLayout(3,2));
       
        container.add(new JLabel("Enter numerator ",
                SwingConstants.RIGHT));
        inputField1 = new JTextField();
        container.add( inputField1);
       
        container.add(new JLabel("Enter denominate and Press Enter ",
                SwingConstants.RIGHT));
        inputField2 = new JTextField();
        container.add( inputField2);
        inputField2.addActionListener(this);
       
        container.add(new JLabel("Result",SwingConstants.RIGHT ));
        outputField = new JTextField();
        container.add(outputField);
       
        setSize(450,200);
        setVisible(true);
       
    }//end DivideByZeroTest method
    public void actionPerformed (ActionEvent event){
        DecimalFormat precision3 = new DecimalFormat("0.000");
        outputField.setText("");
        try {
            number1 = Integer.parseInt(inputField1.getText() );
            number2 = Integer.parseInt(inputField2.getText() );
            result = quotient(number1,number2);
            outputField.setText(precision3.format(result));
        }//end try block
        catch(NumberFormatException numberFormatException){
            JOptionPane.showMessageDialog( this,"You Must enter 2 integer",
                    "invalid Number Format",
                    JOptionPane.ERROR_MESSAGE);
        }//end catch block1
       
        catch(ArithmeticException arithmeticException){   
            JOptionPane.showMessageDialog(this,arithmeticException.toString(),
                    "Arcthmetic Exception",JOptionPane.ERROR_MESSAGE);
           
        }//end catch block2
    }//end actionperformed method
public double quotient (int numerator, int denominator)
      throws DivideByZeroException{
            if (denominator == 0)
                throw new DivideByZeroException();
            return (double)numerator / denominator;
}//end quotient method
public static void main (String args[]){
    DivideByZeroTest application = new DivideByZeroTest();
    application.setDefaultCloseOpration(
            JFrame.EXIT_ON_CLOSE);
}//end mian method
}//end class DivideByZeroTest


[ 此贴被chenpeng在2007-08-31 13:11重新编辑 ]
顶端 Posted: 2007-08-31 12:33 | [楼 主]
chenpeng



性别: 帅哥 状态: 该用户目前不在线
头衔: 任重道远 驰骋不息
等级: 栋梁之材
家族: 考研俱乐部
发贴: 602
威望: 5
浮云: 1195
在线等级:
注册时间: 2006-10-17
最后登陆: 2009-03-14

5come5帮你背单词 [ ride /raid/ v. 骑(马),驾(车),乘(风、浪等);n. 乘坐,旅行 ]


在运行时出现错误,可是我怎么也找不到这个错误,我已经花费了近2小时了,还是在绝望中登上了求助的道路,哪位蝈蝈能够帮忙找找啊。谢谢啦    
顶端 Posted: 2007-08-31 12:35 | [1 楼]
myxxn



性别: 保密 状态: 该用户目前不在线
等级: 人见人爱
发贴: 2234
威望: 0
浮云: 1105
在线等级:
注册时间: 2005-10-04
最后登陆: 2010-10-09

5come5帮你背单词 [ luxurious /lΛg'zjuəriəs/ a. 奢侈的,豪华的 ]


public class DividByZeroTest extends JFrame

  public DivideByZeroTest(){
        super( "Excetion Test Program" );

你仔细比较一下这两行
顶端 Posted: 2007-08-31 12:46 | [2 楼]
myxxn



性别: 保密 状态: 该用户目前不在线
等级: 人见人爱
发贴: 2234
威望: 0
浮云: 1105
在线等级:
注册时间: 2005-10-04
最后登陆: 2010-10-09

5come5帮你背单词 [ sigh /sai/ vt. & n. 叹气,叹息;vt. 叹息地说 ]


然后还有类似的拼写错误
最后你的DivideByZeroException类没有声明或者导入
顶端 Posted: 2007-08-31 12:58 | [3 楼]
骑着野猪飞奔



性别: 帅哥 状态: 该用户目前不在线
头衔: 站在小龙女肩膀上捡贝壳
等级: 荣誉会员
家族: 5COME5婚姻介绍所
发贴: 3078
威望: 3
浮云: 408
在线等级:
注册时间: 2006-06-17
最后登陆: 2010-12-11

5come5帮你背单词 [ crate /kreit/ n. 轰响,坠毁,碰撞;v. 碰撞,粉碎 ]


把你错误时抛出的异常帖出来
顶端 Posted: 2007-08-31 12:58 | [4 楼]
chenpeng



性别: 帅哥 状态: 该用户目前不在线
头衔: 任重道远 驰骋不息
等级: 栋梁之材
家族: 考研俱乐部
发贴: 602
威望: 5
浮云: 1195
在线等级:
注册时间: 2006-10-17
最后登陆: 2009-03-14

5come5帮你背单词 [ salvage /'sælvid3ə/ vt. 抢救,打捞;n. 救助(的财物) ]


谢谢了,原来是英文的拼写错误,唉,原来真相这么简单      
顶端 Posted: 2007-08-31 13:01 | [5 楼]
寒雨



性别: 帅哥 状态: 该用户目前不在线
等级: 鹤立鸡群
发贴: 1007
威望: 0
浮云: 1128
在线等级:
注册时间: 2005-11-20
最后登陆: 2008-06-26

5come5帮你背单词 [ simultaneous /siməl'teinjəs/ a. 同时的,同时发生的 ]


一是拼写错误,再就是有个异常类你没有加进来
你这个好像是复制的别人的程序吧
顶端 Posted: 2007-09-01 15:10 | [6 楼]
我来我网·5come5 Forum » 程序员之家

Total 0.012225(s) query 5, Time now is:11-23 03:50, Gzip enabled
Powered by PHPWind v5.3, Localized by 5come5 Tech Team, 黔ICP备16009856号