JAVA實(shí)驗(yàn)-圖形界面設(shè)計(jì)_第1頁
JAVA實(shí)驗(yàn)-圖形界面設(shè)計(jì)_第2頁
JAVA實(shí)驗(yàn)-圖形界面設(shè)計(jì)_第3頁
JAVA實(shí)驗(yàn)-圖形界面設(shè)計(jì)_第4頁
JAVA實(shí)驗(yàn)-圖形界面設(shè)計(jì)_第5頁
已閱讀5頁,還剩15頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、廣州大學(xué)學(xué)生實(shí)驗(yàn)報(bào)告開課學(xué)院及實(shí)驗(yàn)室:計(jì)算機(jī)科學(xué)與工程實(shí)驗(yàn)室2014年11月14日學(xué)院計(jì)算機(jī)科學(xué)與教育軟件學(xué)院年級/專業(yè)/班姓名學(xué)號實(shí)驗(yàn)課程名稱Java語言成績實(shí)驗(yàn)項(xiàng)目名稱圖形界面設(shè)計(jì)指導(dǎo)老師一、實(shí)驗(yàn)?zāi)康膶?shí)驗(yàn)十 圖形用戶界面(1)1.了解圖形用戶界面基本組件窗口、按鈕、文本框、選擇框、滾動(dòng)條等的使用方法,2.了解如何使用布局管理器對組件進(jìn)行管理,以及如何使用Java 的事件處理機(jī)制。實(shí)驗(yàn)十一 圖形用戶界面(2)1.了解圖形用戶界面基本組件窗口、按鈕、文本框、選擇框、滾動(dòng)條等的使用方法,2.了解如何使用布局管理器對組件進(jìn)行管理,以及如何使用Java 的事件處理機(jī)制。二、實(shí)驗(yàn)器材MacBook P

2、ro一臺操作系統(tǒng):OS X Yosemite編程軟件:eclipse3、 實(shí)驗(yàn)要求實(shí)驗(yàn)十 圖形用戶界面(1)1. 理解Java 的事件處理機(jī)制,掌握為不同組件編寫事件處理程序的方法。2. 掌握編寫?yīng)毩⑦\(yùn)行的窗口界面的方法。3. 了解Java Swing 組件的使用方法。4. 了解對話框的使用方法。實(shí)驗(yàn)十一 圖形用戶界面(2)1. 理解Java 的事件處理機(jī)制,掌握為不同組件編寫事件處理程序的方法。2. 掌握編寫?yīng)毩⑦\(yùn)行的窗口界面的方法。3. 了解Java Swing 組件的使用方法。4. 了解對話框的使用方法。四、實(shí)驗(yàn)過程原始數(shù)據(jù)記錄實(shí)驗(yàn)十 圖形用戶界面(1)1. 如下圖所示,用了三個(gè)文本框,

3、第一個(gè)文本框給用戶輸入商品單價(jià),第二個(gè)則是給用戶輸入商品數(shù)量,第三個(gè)用于顯示總金額。代碼:import java.awt.FlowLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JOptionPane;import javax.swing.JTextField;import javax.swin

4、g.SwingConstants;import javax.swing.event.DocumentEvent;import javax.swing.event.DocumentListener;import javax.swing.text.BadLocationException;import javax.swing.text.Document;public class test_2_1_1 extends JFrame implements ActionListenerpublic static void main(String args) / TODO Auto-generated m

5、ethod stubtest_2_1_1 good = new test_2_1_1();JTextField goodPriceTF;JTextField goodNumTF;JTextField sumPriceTF;JLabel goodPriceTipsLabel;JLabel goodNumTipsLabel;Boolean canCal = false;public test_2_1_1()super("商品價(jià)格計(jì)算器");setSize(435, 135);setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);/ 設(shè)置J

6、Frame是否可以改變大小。 setResizable(false); / JFrame打開后居中。 setLocationRelativeTo(getOwner(); FlowLayout flo = new FlowLayout();setLayout(flo);JLabel goodPriceLabel = new JLabel("商品價(jià)格",JLabel.RIGHT);JLabel goodNumLabel = new JLabel("商品數(shù)量",JLabel.RIGHT);JLabel sumPriceLabel = new JLabel(&q

7、uot;商品總額",JLabel.RIGHT);goodPriceTipsLabel = new JLabel("請輸入價(jià)格",JLabel.RIGHT);goodNumTipsLabel = new JLabel("請輸入數(shù)量",JLabel.RIGHT);goodPriceTF = new JTextField(20);goodPriceTF.getDocument().addDocumentListener(new DocumentListener() Overridepublic void removeUpdate(DocumentEv

8、ent e) / TODO Auto-generated method stubchangeTFTipsLabel(goodPriceTipsLabel, goodPriceTF.getText();Overridepublic void insertUpdate(DocumentEvent e) / TODO Auto-generated method stubchangeTFTipsLabel(goodPriceTipsLabel, goodPriceTF.getText();Overridepublic void changedUpdate(DocumentEvent e) / TODO

9、 Auto-generated method stubchangeTFTipsLabel(goodPriceTipsLabel, goodPriceTF.getText(););goodNumTF = new JTextField(20);goodNumTF.getDocument().addDocumentListener(new DocumentListener() Overridepublic void removeUpdate(DocumentEvent e)/ TODO Auto-generated method stubchangeTFTipsLabel(goodNumTipsLa

10、bel, goodNumTF.getText();Overridepublic void insertUpdate(DocumentEvent e) / TODO Auto-generated method stubchangeTFTipsLabel(goodNumTipsLabel, goodNumTF.getText();Overridepublic void changedUpdate(DocumentEvent e) / TODO Auto-generated method stubchangeTFTipsLabel(goodNumTipsLabel, goodNumTF.getTex

11、t(););sumPriceTF = new JTextField(20);sumPriceTF.setEditable(false);JButton btn = new JButton("計(jì)算");btn.addActionListener(this);add(goodPriceLabel);add(goodPriceTF);add(goodPriceTipsLabel);add(goodNumLabel);add(goodNumTF);add(goodNumTipsLabel);add(sumPriceLabel);add(sumPriceTF);add(btn);se

12、tVisible(true);public void actionPerformed(ActionEvent event)if (event.getActionCommand().equals("計(jì)算")if (!canCal)showMessage("輸入的數(shù)據(jù)不合法");return;double sum = Double.parseDouble(goodPriceTF.getText() * Double.parseDouble(goodNumTF.getText();sumPriceTF.setText(Double.toString(sum);

13、/檢測文本是否純數(shù)字public Boolean isNumber(String s)if (s.length() = 0)return false;Boolean isNumber = true;char c = s.toCharArray();for (int i = 0;i < s.length();i+)if (Character.isDigit(ci) = false)isNumber = false;break;return isNumber;/彈出警告public void showMessage(String s)JOptionPane.showMessageDialog

14、(null, s, "警告", JOptionPane.PLAIN_MESSAGE);/修改文本提示labelpublic void changeTFTipsLabel(JLabel aLabel,String str)/if (isNumber(str) = false)canCal = false;aLabel.setText("X ");else if (isNumber(goodPriceTF.getText() | isNumber(goodNumTF.getText()if (isNumber(goodPriceTF.getText() &a

15、mp;& isNumber(goodNumTF.getText()canCal = true;aLabel.setText(" ");else if (str.length() = 0)canCal = false;if (aLabel = goodPriceTipsLabel)aLabel.setText("請輸入價(jià)格");elseaLabel.setText("請輸入數(shù)量");運(yùn)行結(jié)果:啟動(dòng)畫面當(dāng)輸入的字符是數(shù)字,對應(yīng)右邊的框旁邊會提示 ,如果輸入非法字符,則會出現(xiàn) X,此時(shí)點(diǎn)擊計(jì)算,則會彈出錯(cuò)誤警告框。輸入正確數(shù)字后,點(diǎn)

16、計(jì)算按鈕,得到正確結(jié)果。2. 制作如下圖所示的界面,當(dāng)用戶點(diǎn)擊單選按鈕時(shí),會在一個(gè)標(biāo)簽上顯示出當(dāng)前所選定的數(shù)據(jù)庫服務(wù)器類型。代碼:import java.awt.EventQueue;import java.awt.GridLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.ButtonGroup;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JRadioBu

17、tton;public class test_2_1_2 implements ActionListenerprivate JFrame frmAsdfasdf;JLabel label;/* * Launch the application. */public static void main(String args) EventQueue.invokeLater(new Runnable() public void run() try test_2_1_2 window = new test_2_1_2();window.frmAsdfasdf.setVisible(true); catc

18、h (Exception e) e.printStackTrace(););/* * Create the application. */public test_2_1_2() initialize();/* * Initialize the contents of the frame. */private void initialize() frmAsdfasdf = new JFrame();frmAsdfasdf.setTitle("數(shù)據(jù)庫");frmAsdfasdf.setBounds(100, 100, 251, 301);frmAsdfasdf.setDefau

19、ltCloseOperation(JFrame.EXIT_ON_CLOSE);frmAsdfasdf.getContentPane().setLayout(new GridLayout(0, 1, 0, 0);/創(chuàng)建Radio按鈕JRadioButton rdbtnNewRadioButton_1 = new JRadioButton("SQL");frmAsdfasdf.getContentPane().add(rdbtnNewRadioButton_1);rdbtnNewRadioButton_1.addActionListener(this);JRadioButton

20、 rdbtnNewRadioButton = new JRadioButton("Oracle");frmAsdfasdf.getContentPane().add(rdbtnNewRadioButton);rdbtnNewRadioButton.addActionListener(this);JRadioButton rdbtnNewRadioButton_2 = new JRadioButton("SQLite");frmAsdfasdf.getContentPane().add(rdbtnNewRadioButton_2);rdbtnNewRadi

21、oButton_2.addActionListener(this);/添加按鈕ButtonGroup bg=new ButtonGroup();bg.add(rdbtnNewRadioButton);bg.add(rdbtnNewRadioButton_1);bg.add(rdbtnNewRadioButton_2);label = new JLabel("學(xué)習(xí)使用JRadioButton控件");frmAsdfasdf.getContentPane().add(label);public void actionPerformed(ActionEvent event)if

22、(event.getSource() instanceof JRadioButton)label.setText(event.getActionCommand();運(yùn)行結(jié)果:啟動(dòng)截圖點(diǎn)擊Oracle選項(xiàng)實(shí)驗(yàn)十一 圖形用戶界面(2)1. 創(chuàng)建如圖所示的菜單代碼:import java.awt.EventQueue;import javax.swing.JFrame;import javax.swing.JMenuBar;import javax.swing.JMenuItem;import javax.swing.JMenu;import java.awt.Component;import ja

23、vax.swing.Box;import javax.swing.JCheckBoxMenuItem;import javax.swing.JCheckBox;import javax.swing.JRadioButton;import javax.swing.JSeparator;public class test_2_2 private JFrame frmMenu;/* * Launch the application. */public static void main(String args) EventQueue.invokeLater(new Runnable() public

24、void run() try test_2_2 window = new test_2_2();window.frmMenu.setVisible(true); catch (Exception e) e.printStackTrace(););/* * Create the application. */public test_2_2() initialize();/* * Initialize the contents of the frame. */private void initialize() frmMenu = new JFrame();frmMenu.setTitle(&quo

25、t;Menu菜單使用");frmMenu.setBounds(100, 100, 349, 219);frmMenu.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);JMenuBar menuBar = new JMenuBar();frmMenu.setJMenuBar(menuBar);JMenu mnNewMenu = new JMenu("File");menuBar.add(mnNewMenu);JMenuItem mntmNewMenuItem = new JMenuItem("New"

26、);mnNewMenu.add(mntmNewMenuItem);JMenuItem mntmNewMenuItem_1 = new JMenuItem("Open");mnNewMenu.add(mntmNewMenuItem_1);JMenuItem mntmNewMenuItem_2 = new JMenuItem("Close");mnNewMenu.add(mntmNewMenuItem_2);JMenu mnNewMenu_1 = new JMenu("Option");menuBar.add(mnNewMenu_1);JMenuItem mntmNewMenuItem_4 = new JMenuItem("Font.");mnNewMenu_1.add(mntmNewMenuItem_4);JMenu mnNewMenu_2 = new JMenu("Color.");mnNewMenu_1.add(mnNewMenu_2);JMenuItem mntmBlack = new JMenuItem("Black");mnNewMenu

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論