资源描述:
《java小应用程序applet设计(计算器)实验报告(附完整代码)》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、小应用程序Applet设计一、课题内容和要求内容:设计和编写一个可以用鼠标操作的Applet小应用程序和相应的HTML页面,观察Applet的执行过程,测试程序鼠标用户交互操作的效果。要求:要求学生能在学习和理解课堂学习内容中JAVA小应用程序的基础上,通过实验,培养学生将JAVA小应用程序相关知识点(包括JAVAApplet和低级事件处理模型)有机结合,设计基于WEB浏览器的小应用程序的能力。二、设计思路分析classApp:一个JavaApplet计算器的主类publicvoidinit():完成初始化appletpublicbooleanaction():实现事件处理的
2、方法publicvoiddoOperator():运算及运算结果输出操作publicvoiddoForeScreen():数字和小数点输出到文本框操作publicvoiddoClear():清空操作三、概要设计publicclassAppextendsApplet{TextFieldtfAnswer;Buttonb0,b1,b2,b3,b4,b5,b6,b7,b8,b9;ButtonbPoint,bEqual,bPlus,bMinus,bClear,bMulti,bDivision;StringOperatorCurrent,OperatorPre;StringForeScr
3、een,BackScreen;booleanisFloat=false;publicvoidinit();publicbooleanaction(Evente,Objecto);publicvoiddoOperator()publicvoiddoForeScreen(Strings);publicvoiddoClear();}事件处理:运算及运算结果输出:四、详细设计Java代码:importjava.awt.*;importjava.applet.*;publicclassAppextendsApplet{TextFieldtfAnswer;//定义变量Buttonb0,b
4、1,b2,b3,b4,b5,b6,b7,b8,b9;ButtonbPoint,bEqual,bPlus,bMinus,bClear,bMulti,bDivision;StringOperatorCurrent,OperatorPre;StringForeScreen,BackScreen;booleanisFloat=false;publicvoidinit(){//初始化OperatorCurrent=newString("");OperatorPre=newString("");ForeScreen=newString("0");//保证输入字符串不为空防止计算错误Bac
5、kScreen=newString("");setBackground(Color.gray);setLayout(null);//设为空布局便于自定义组件位置tfAnswer=newTextField();//设置文本框样式tfAnswer.setBounds(20,20,175,40);tfAnswer.setFont(newFont(BackScreen,Font.BOLD,28));add(tfAnswer);tfAnswer.setText(ForeScreen);bClear=newButton("C");//设置按钮样式bClear.setBounds(20,7
6、0,40,40);add(bClear);bDivision=newButton("/");bDivision.setBackground(Color.green);bDivision.setBounds(65,70,40,40);add(bDivision);bMulti=newButton("*");bMulti.setBackground(Color.green);bMulti.setBounds(110,70,40,40);add(bMulti);bMinus=newButton("-");bMinus.setBackground(Color.green);bMinu
7、s.setBounds(155,70,40,40);add(bMinus);b7=newButton("7");b7.setBounds(20,115,40,40);b7.setBackground(Color.orange);add(b7);b8=newButton("8");b8.setBackground(Color.orange);b8.setBounds(65,115,40,40);add(b8);b9=newButton("9");b9.setBackground(Color.orange)