黑马程序员——GUI

时间:2021-09-21 11:13:31

------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------

一,GUI概述

用户与计算机交互方式有两种:命令行和图形化界面

GUI

Graphical User Interface(图形用户接口) 。

用图形的方式,来显示计算机操作的界面,这样更方便更直观。

CLI

Command Line UserInterface(命令行用户接口)

就是常见的Dos命令行操作。

需要记忆一些常用的命令,操作不直观。

Java为GUI提供的对象都存在java.Awt和javax.Swing两个包中。

1,java.Awt:Abstract WindowToolKit(抽象窗口工具包),需要调用本地系统方法实现功能。属重量级控件,依赖平台性较强。

2,javax.Swing:在AWT的基础上,建立的一套图形界面系统,其中提供了更多的组件,而且完全由Java实现。增强了移植性,属轻量级控件,跨平台性较强。

继承关系图:

黑马程序员——GUI

二,布局管理器

容器中的组件的排放方式,就是布局。

常见的布局管理器:

1,FlowLayout(流式布局管理器)

从左到右的顺序排列

Panel默认的布局管理器

2,BorderLayout(边界布局管理器)

东,南,西,北,中,

Frame 默认的布局管理器

3,GridLayout(网格布局管理器)

规则的矩阵

4,CardLayout(卡片布局管理器)

选项卡

5,GridBagLayout(网格包布局管理器)

非规则的矩阵

三,Frame

1,创建Frame窗体:

Frame f = new Frame("my Frame");//可设置标题,即窗体名字

2,对窗体进行基本设置:如大小,位置,布局等

f.setSize(int wight,int hight);//窗体大小设置

f.setLocation(int x,int y);//窗体显示位置设置,横纵坐标

f.setBounds(int x,int y,int wight,int hight),也可以直接用这个方法对大小和位置设置

f.setLayout(Layout layout),参数为指定的布局管理器

3,定义组件

Button b = new Button(“my Button”);//可设置组件的名称

4,将组件通过窗体的add方法添加到窗体中,

f.add(b);//将按钮组件添加进窗体

5,让窗体显示

f.setVisible(boolean b);//通过设置参数是true还是false是否显示窗体

四,事件监听机制

事件监听机制流程图:

黑马程序员——GUI

1,事件源(组件)就是awt包或者swing包中的哪些图形界面组件

2,事件(Event)每一个事件源都有自己特有的对应事件和共性事件。

3,监听器(Listener)将可以触发某一个事件的动作(不止一个动作)都已经封装到了监听器中。

4,事件处理(引发事件后处理方式)

以上三者:在java中都已经封装好了,直接获取其对象并使用就可以了,我们要做的事情就是对产生的动作进行处理。

操作步骤:

1,确定事件源(容器或组件)

2,通过事件源对象的addXXXListener(),方法将侦听器注册到该事件源上该方法中接收XXXListener的子类对象,或者XXXListener的,子类XXXAdapter的子类对象

3,一般用匿名内部类来表示。

注意:

在覆盖方法的时候,方法的参数一般是XXXEvent类型的变量接收。

因为WindowsListener的子类WindowsAdapter已经实现了WindowsListener接口,并覆盖了其中的所有方法,那么我们只要继承自WindowsAdapter覆盖所需方法即可。

示例:

import java.awt.*;  
import java.awt.event.*;

class FrameDemo
{
private Frame f = null;
private Button btn = null;
FrameDemo()
{
f = new Frame("我的窗口");
btn = new Button("按钮");
}
public void createMyFrame()
{
f.setBounds(200,200,400,400);
f.setLayout(new FlowLayout());
f.add(btn);
addListener();
f.setVisible(true);
}
private void addListener()
{
f.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
btn.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e)
{
System.exit(0);
}
});
}
public static void main(String[] args)
{
new FrameDemo().createMyFrame();
}
}
练习一:模拟一个打开我的电脑里的路径

/*
模拟一个打开我的电脑里的路径
*/

import java.awt.*;
import java.awt.event.*;
import java.io.*;
class MyWindowDemo extends Frame
{
private Frame f;
private Button b;
private TextField tf;
private TextArea ta;
private Label lab;
private Dialog d;
private Button okbutton;

MyWindowDemo()
{
init();
}
public void init()
{
f=new Frame("my windows ");
f.setBounds(300,100,600,500);
f.setLayout(new FlowLayout());

tf = new TextField(60);
b = new Button("转到");
ta = new TextArea(25,70);
d = new Dialog(f,"提示信息-self",true);
d.setBounds(200,100,600,450);
d.setLayout(new FlowLayout());
okbutton = new Button("确定");
lab = new Label();

d.add(okbutton);
d.add(lab);
f.add(tf);
f.add(b);
f.add(ta);

myEvent();
f.setVisible(true);
}

public void myEvent()
{
okbutton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
d.setVisible(false);
}
});
d.addWindowListener(new WindowAdapter()
{

public void windowClosing(WindowEvent e)
{
d.setVisible(false);
}
});
b.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
ta.setText("");
String dirPath = tf.getText();
File dir = new File(dirPath);//只有把文件封装成对象才能list
if(dir.exists() && dir.isDirectory())
{
String[] names = dir.list();
for(String name: names)
{
ta.append(name+"\r\n");
}
}
else
{

d.setVisible(true);
lab.setText("输入的不是地址"+dirPath+",请重输!");
}
// ta.setText(text);
//tf.setText("");
//System.out.println(text);
}
});
f.addWindowListener(new WindowAdapter()
{

public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}


public static void main(String[] args)
{
new MyWindowDemo();
}
}

练习二:利用Menu组件完成一个简单的记事本程序。

具有文件菜单,文件中有打开,保存和退出功能。将写好的程序变为双击可执行的程序。

import java.awt.*;
import java.awt.event.*;
import java.io.*;
class MyMenuTest
{
private Frame f;
private MenuBar mb;
private Menu filemenu;
private MenuItem closeItem;
private MenuItem saveItem;
private MenuItem openItem;
private FileDialog openDia,saveDia;
private TextArea ta;
private File file;


MyMenuTest()
{
init();
}

public void init()
{
f = new Frame("my windows");
f.setBounds(300,100,500,600);
//f.setLayout(new FlowLayout());

mb = new MenuBar();
filemenu =new Menu("文件");
closeItem = new MenuItem("退出");
openItem = new MenuItem("打开");
saveItem = new MenuItem("保存");
filemenu.add(closeItem);
filemenu.add(openItem);
filemenu.add(saveItem);
mb.add(filemenu);
ta = new TextArea();

openDia = new FileDialog(f,"我要打开",FileDialog.LOAD);
saveDia = new FileDialog(f,"我要保存",FileDialog.SAVE);

f.add(ta);
f.setMenuBar(mb);
myEvent();
f.setVisible(true);
}
private void myEvent()
{
saveItem.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ex)
{
if(file==null)
{
saveDia.setVisible(true);
String dirpath = saveDia.getDirectory();
String filename = saveDia.getFile();
if(dirpath==null||filename==null)
return;
file = new File(dirpath,filename);
}
try
{
BufferedWriter bufw = new BufferedWriter(new FileWriter(file));
String text = ta.getText();
bufw.write(text);
//bufw.flush();
bufw.close();

}
catch (IOException er)
{
throw new RuntimeException("保存失败");
}

}
});
openItem.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{

openDia.setVisible(true);
String dirpath = openDia.getDirectory();
String filename = openDia.getFile();
if(dirpath==null||filename==null)
return;
ta.setText("");
file = new File(dirpath,filename);
try
{
BufferedReader bufr = new BufferedReader(new FileReader(file));
String line = null;
while((line = bufr.readLine())!=null)
{
ta.append(line+"\r\n");
}
bufr.close();
}
catch (IOException ex)
{
throw new RuntimeException("读取失败");
}
}
});
closeItem.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent ex)
{
System.exit(0);
}
});
f.addWindowListener(new WindowAdapter()
{

public void windowClosing(WindowEvent e)
{
System.exit(0);
}
});
}
public static void main(String[] args)
{
new MyMenuTest();
}
}

五,Jar包双击运行

要注册执行jar文件所用到的javaw.exe

1.txt:Main-Class:[空格]包名.类名[回车]

Main-Class: mymenu.MyMenuTest                                        

DOS命令:jar -cvfm myjar(即要创建的包名) 1.txt(配置文件名称) myclass(存放有.class文件的文件夹)

注意:空格和回车一定要有





------Java培训、Android培训、iOS培训、.Net培训、期待与您交流! -------