1. 程式人生 > 程式設計 >JAVA基礎-GUI

JAVA基礎-GUI

Java也提供影象化程式設計

圖形化

GUI(圖形使用者介面)

GUI

1 Graphical User Interface(圖形使用者介面)

2 用圖形的方式,來顯示計算機操作的介面,這樣更方便更直觀

CLI

1 Command line User Interface (命令列使用者介面)

2 就是常見的Dos命令列操作

3 需要記憶一些常用的命令,操作不直觀

Java為GUI提供的物件都存在java.Awt和javax.Swing兩個包中

Awt和Swing

java.Awt:Abstract Window ToolKit(抽象視窗 工具包),需要呼叫本地系統方法實現功能。屬重量級控制元件

javax.Swing:在AWT的基礎上,建立的一套圖形介面系統,其中提供了更多的元件,而且完全由Java實現。增強了移植性,屬

輕量級控制元件

繼承關係圖

JAVA基礎-GUI

Container:為容器,是一個特殊的元件,該元件中可以通過add方法新增其他元件進來

佈局管理器

容器中的元件的排放方式,就是佈局

常見的佈局管理器:

FlowLayout(流式佈局管理器)
從左到右的順序排列
Panel預設的佈局管理器

BorderLayout(邊界佈局管理器)
東,南,西,北,中
Frame預設的佈局管理器

GridLayout(網格佈局管理器)
規則的矩陣

CardLayout(卡片佈局管理器)
選項卡

GridBagLayout(網格包佈局管理器)

非規則的矩陣

建立一個簡單的窗體

Container常用子類:Window Panel(面板,不能單獨存在)

Window常用子類:Frame Dialog

簡單的窗體建立過程:

Frame f = new Frame("my window");
f.setLayout(new FlowLayout());
f.setSize(500,400);//設定窗體大小
f.setLocation(300,200);//設定窗體出現在螢幕的位置
f.setVisible(true); //設定視窗可見性

事件監聽

事件監聽機制組成

事件源(元件):就是awt包或者swing包中的那些圖形介面元件

事件(Event):每一個事件源都有自己特有的對應事件和共性事件

監聽器(Listener):將可以觸發某一個事件的動作(不只一個動作)都已經封裝到了監聽器中

事件處理(引發事件後處理方式)

事件監聽機制流程圖

JAVA基礎-GUI

事件監聽機制

1 確定事件源(容器或元件)

2 通過事件源物件的addXXXListener()方法將偵聽器註冊到該事件源上

3 該方法中接收XXXListener的子類物件,或者XXXListener的子類XXXAdapter的子類物件

4 一般用匿名內部類來表示

5 在覆蓋方法的時候,方法的引數一般是XXXEvent型別的變數接收

6 事件觸發後會把事件打包成物件傳遞給該變數(其中包括事件源物件。通過getSource()或者getComponent()獲取)

import java.awt.*;
import java.awt.event.*;
import java.io.*;
class Test {
	private Frame f;
	private TextField tf;
	private Button but;
	private TextArea ta;

	private Dialog d;
	private Label lab;
	private Button okBut;

	Test() {
		init();
	}

	public void init() {
		f = new Frame("my window");
		f.setBounds(300,100,600,500);
		f.setLayout(new FlowLayout());
		tf = new TextField(60);
		but = new Button("轉到");
		ta = new TextArea(25,70);
		d = new Dialog(f,"提示資訊-self",true);
		d.setBounds(400,200,240,150);
		d.setLayout(new FlowLayout());
		lab = new Label();
		okBut = new Button("確定");
		d.add(lab);
		d.add(okBut);
		f.add(tf);
		f.add(but);
		f.add(ta);
		myEvent();
		f.setVisible(true);
	}

	private void myEvent() {
		okBut.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				d.setVisible(false);
			}
		});
		d.addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent e) {
				d.setVisible(false);
			}
		});
		tf.addKeyListener(new KeyAdapter() {
			public void keyPressed(KeyEvent e) {
				if(e.getKeyCode()==KeyEvent.VK_ENTER)
					showDir();
			}
		});
		but.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				showDir();
			}
		});
		f.addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent e) {
				System.exit(0);	
			}
		});
	}
	private void showDir() {
		String dirPath = tf.getText();		
		File dir = new File(dirPath);
		if(dir.exists() && dir.isDirectory()) {
			ta.setText("");
			String[] names = dir.list();
			for(String name : names) {
				ta.append(name+"\r\n");
			}
		} else {
			String info = "輸入資訊錯誤,請重輸";
			lab.setText(info);
			d.setVisible(true);
		}
	}
	public static void main(String[] args) {
		new Test();
	}
}

選單

概述

MenuBar,Menu,MenuItem
先建立選單條,再建立選單,每一個選單 中建立選單項
也可以選單新增到選單中,作為子選單
通過setMenuBar()方法,將選單新增到Frame中

選單繼承體系

JAVA基礎-GUI

程式碼示例

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

class Test {

	private Frame f;
	private MenuBar mb;
	private Menu m,subMenu;
	private MenuItem closeItem,subItem;

	Test(){
		init();
	}
	
  public void init(){
		f = new Frame("my window");
		f.setBounds(300,500,600);
		f.setLayout(new FlowLayout());
		mb = new MenuBar();
		m = new Menu("檔案");
		subMenu = new Menu("子選單");
		subItem = new MenuItem("子條目");
		closeItem = new MenuItem("退出");
		subMenu.add(subItem);
		m.add(subMenu);
		m.add(closeItem);
		mb.add(m);
		f.setMenuBar(mb);
		myEvent();
		f.setVisible(true);
	}
	private void myEvent() {
		closeItem.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				System.exit(0);
			}
		});
		f.addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent e) {
				System.exit(0);	
			}
		});
	}
	public static void main(String[] args) {
		new Test();
	}
}

可執行Jar包

1 將多個類封裝到了一個包(package)中。

2 定義一個jar包的配置資訊。

3 定義一個檔案a.txt,檔案內容內容為:Main-Class:(空格)包名.類名(回車)

4 打jar包。
jar -cvfm my.jar a.txt 包名

5 通過winrar程式進行驗證,檢視該jar的配置檔案中是否有自定義的配置資訊

6 通過工具–資料夾選項–檔案型別–jar型別檔案,通過高階,定義該jar型別檔案的開啟動作的關聯程式
jdk\bin\javaw.exe -jar

package mymenu;
import java.awt.*;
import java.awt.event.*;
import java.io.*;

public class Test {
	private Frame f;
	private MenuBar bar;
	private TextArea ta;
	private Menu fileMenu;
	private MenuItem openItem,saveItem,closeItem;
	private FileDialog openDia,saveDia;
	private File file;
	Test() {
		init();
	}
	public void init() {
		f = new Frame("my window");
		f.setBounds(300,650,600);
		bar = new MenuBar();
		ta = new TextArea();
		fileMenu = new Menu("檔案");
		openItem = new MenuItem("開啟");
		saveItem = new MenuItem("儲存");
		closeItem = new MenuItem("退出");
		fileMenu.add(openItem);
		fileMenu.add(saveItem);
		fileMenu.add(closeItem);
		bar.add(fileMenu);
		f.setMenuBar(bar);
		openDia = new FileDialog(f,"我要開啟",FileDialog.LOAD);
		saveDia = new FileDialog(f,"我要儲存",FileDialog.SAVE);
		f.add(ta);
		myEvent();
		f.setVisible(true);
	}
	private void myEvent() {
		saveItem.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				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 ex) {
					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 e) {
				System.exit(0);
			}
		});
		f.addWindowListener(new WindowAdapter() {
			public void windowClosing(WindowEvent e) {
				System.exit(0);	
			}
		});
	}
	public static void main(String[] args) {
		new Test();
	}
}

以上就是JAVA基礎-GUI的詳細內容,更多關於JAVA GUI的資料請關注我們其它相關文章!