您好,欢迎访问三七文档
实验报告()院(系)数学与统计学院课程名称:Java程序设计日期:2012年11月28日班级学号实验室专业姓名计算机号实验名称窗口和菜单界面编程成绩评定所用软件NetBeansIDE7.0指导教师实验目的了解图形用户界面基本组件窗口、按钮、文本框、选择框、滚动条等的使用方法,了解如何使用布局管理器对组件进行管理,以及如何使用Java的事件处理机制。实验内容(一)建立独立运行的窗口界面并使用匿名类最常使用的包含组件的容器是窗口,在Java中窗口由Frame类生成。1.创建一个窗口界面◆程序功能:创建一个具有关闭功能的空白窗口。◆编写SY4_1.java程序文件。◆编译并运行程序如图1所示图12.为窗口添加菜单◆程序功能:在窗口中添加菜单栏,在菜单栏添加菜单项,并添加下拉菜单和2级菜单,选择菜单项可以执行不同操作,如打开可打开sy4_2类生成的窗口。◆编写sy4_2.java程序文件,源代码如下:◆编译并运行程序如图2-图4所示图2图3图43.在窗口中添加组件(选做)◆程序功能:在窗口中添加组件。◆编写sy4_3.java程序文件,源代码如下:◆编译并运行程序如图5所示实验过程1.importjava.awt.*;importjava.awt.event.*;publicclasssy4_1{publicstaticvoidmain(String[]args){newsy4_1();}sy4_1(){Framef=newFrame(初始窗口);f.setSize(200,200);f.setVisible(true);f.addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});}}2.importjava.awt.*;importjava.awt.event.*;publicclasssy4_2extendsFrameimplementsActionListener{Panelp=newPanel();Buttonb=newButton(Exit);MenuBarmb=newMenuBar();Menum1=newMenu(File);MenuItemopen=newMenuItem(Open);MenuItemclose=newMenuItem(Close);MenuItemexit=newMenuItem(Exit);Menum12=newMenu(Edit);MenuItemcopy=newMenuItem(Copy);MenuItemcut=newMenuItem(Cut);MenuItempaste=newMenuItem(Paste);Menum2=newMenu(Help);MenuItemcontent=newMenuItem(List);MenuItemindex=newMenuItem(Index);MenuItemabout=newMenuItem(About);sy4_2(){super(添加菜单的窗口);setSize(200,200);add(South,p);p.add(b);b.addActionListener(this);m1.add(open);m1.add(close);m1.addSeparator();m1.add(exit);open.addActionListener(this);exit.addActionListener(this);mb.add(m1);m12.add(copy);m12.add(cut);m12.add(paste);m1.add(m12);m2.add(content);m2.add(index);m2.addSeparator();m2.add(about);mb.add(m2);setMenuBar(mb);show();}publicstaticvoidmain(Stringargs[]){newsy4_2();}publicvoidactionPerformed(ActionEvente){if(e.getActionCommand()==Exit)System.exit(0);if(e.getActionCommand()==Open)newsy4_2();}}.3.importjava.awt.*;importjava.awt.event.*;publicclasssy4_3extendsFrameimplementsActionListener{Buttonbtn1,btn2;TextFieldf,tf1,tf2;TextAreaArea;sy4_3(){super(添加组件的窗口);addWindowListener(newWindowAdapter(){publicvoidwindowClosing(WindowEvente){System.exit(0);}});setSize(350,250);setLocation(200,200);setFont(newFont(Arial,Font.PLAIN,12));setLayout(newFlowLayout());Area=newTextArea(6,40);tf1=newTextField(10);tf2=newTextField(10);btn1=newButton(Display);btn2=newButton(Exit);f=newTextField(20);add(Area);add(newLabel(Username));add(tf1);add(newLabel(Telephone));add(tf2);add(f);add(btn1);add(btn2);tf1.addActionListener(this);tf2.addActionListener(this);btn1.addActionListener(this);btn2.addActionListener(this);show();}publicstaticvoidmain(Stringargs[]){newsy4_3();}publicvoidactionPerformed(ActionEvente){if(e.getSource()==btn1)f.setText(你按下了+e.getActionCommand()+按钮);if(e.getSource()==tf1)Area.append(用户名:+tf1.getText()+\n);if(e.getSource()==tf2)Area.append(电话:+tf2.getText()+\n);if(e.getSource()==btn2){for(inti=0;i100000000;i++);dispose();}}}心得体会通过这次实验,我们可以了解到我们所用的软件的用户界面是如何设置的,进一步了解了计算机的应用;要多思考,多动手,书上的知识点要熟知;
本文标题:窗口和菜单界面编程
链接地址:https://www.777doc.com/doc-2151964 .html