JAVA程序設(shè)計(jì)(團(tuán)購(gòu)網(wǎng)站的注冊(cè))_第1頁(yè)
JAVA程序設(shè)計(jì)(團(tuán)購(gòu)網(wǎng)站的注冊(cè))_第2頁(yè)
JAVA程序設(shè)計(jì)(團(tuán)購(gòu)網(wǎng)站的注冊(cè))_第3頁(yè)
JAVA程序設(shè)計(jì)(團(tuán)購(gòu)網(wǎng)站的注冊(cè))_第4頁(yè)
JAVA程序設(shè)計(jì)(團(tuán)購(gòu)網(wǎng)站的注冊(cè))_第5頁(yè)
已閱讀5頁(yè),還剩12頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

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

文檔簡(jiǎn)介

1、xxxx大學(xué)計(jì)算機(jī)與信息學(xué)院綜合性設(shè)計(jì)性實(shí)驗(yàn)報(bào)告班 級(jí): 學(xué) 號(hào): 姓 名 : 實(shí)驗(yàn)項(xiàng)目名稱: 實(shí)驗(yàn)項(xiàng)目性質(zhì): 實(shí)驗(yàn)所屬課程: 實(shí)驗(yàn)室(中心): 指 導(dǎo) 教 師 : 實(shí)驗(yàn)完成時(shí)間: 年 月 日教師評(píng)閱意見: 簽名: 年 月 日實(shí)驗(yàn)成績(jī):一、實(shí)驗(yàn)?zāi)康氖煜ava語(yǔ)言中的GUI的運(yùn)用,更深入的了解Java的框架,增強(qiáng)動(dòng)手能力。二、實(shí)驗(yàn)內(nèi)容及要求獨(dú)立完成一個(gè)Java課程設(shè)計(jì),題目自擬,熟悉Java的語(yǔ)言風(fēng)格以及進(jìn)一步認(rèn)識(shí)類的概念。三、實(shí)驗(yàn)設(shè)備及軟件計(jì)算機(jī)、JCreatorV4四、設(shè)計(jì)方案 題目:團(tuán)購(gòu)網(wǎng)站的注冊(cè) 設(shè)計(jì)的主要思路 主要包括兩個(gè)frame,父窗體里是團(tuán)購(gòu)的宣傳圖片和兩個(gè)button,通過點(diǎn)

2、擊button新建子窗體,并關(guān)閉父窗體,通過子窗體內(nèi)的button,text,label等組件,使用戶完成注冊(cè)。五、主要代碼1.引用包 import java.awt.*;import javax.swing.*;import java.awt.event.*;2新建zhuce類,main方法public class zhucepublic static void main(String args) TestFrame frame=new TestFrame(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.show(

3、); 3父窗體TestFrameclass TestFrame extends JFrame public TestFrame() setSize(400,500); setTitle("拉手網(wǎng)中國(guó)最大的團(tuán)購(gòu)網(wǎng)"); ImagePanel panel=new ImagePanel(); Container contentPane=getContentPane(); contentPane.add(panel); JPanel buttonPanel=new JPanel(); addButton(buttonPanel,"注冊(cè)",new ActionLi

4、stener()/利用addButton方法,添加一個(gè)按鈕 public void actionPerformed(ActionEvent evt) dispose();/關(guān)閉當(dāng)前窗口 ZuFrame jf = new ZuFrame(); /新建一個(gè)Frame jf.setSize(500, 440); jf.setTitle("注冊(cè)拉手網(wǎng)"); jf.setVisible(true); jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); ); addButton(buttonPanel,"退出",ne

5、w ActionListener()/利用addButton方法,添加一個(gè)按鈕 public void actionPerformed(ActionEvent evt) System.exit(0); ); contentPane.add(buttonPanel,BorderLayout.SOUTH); LabelPanel panel1=new LabelPanel(); contentPane.add(panel1,BorderLayout.NORTH); public void addButton(Container c,String title,ActionListener liste

6、ner) /addButton方法 JButton button = new JButton(title); c.add(button); button.addActionListener(listener);4.往父框體里插入圖片-團(tuán)購(gòu).jpg,往父框體里加入一個(gè)labelclass ImagePanel extends JPanel /imagepanelpublic ImagePanel()/得到image圖像文件 image = Toolkit.getDefaultToolkit().getImage("團(tuán)購(gòu).jpg"); MediaTracker tracker=

7、new MediaTracker(this);tracker.addImage(image,1);trytracker.waitForID(1); catch(InterruptedException exception) public void paintComponent(Graphics g)super.paintComponent(g);/得到image的尺寸int imageWidth=image.getWidth(this);int imageHeight=image.getHeight(this);/得到窗口的尺寸int FrameWidth=getWidth();int Fra

8、meHeight=getHeight();/算出image的坐標(biāo),是他顯示在窗口的正中間int x=(FrameWidth-imageWidth)/2;int y=(FrameHeight-imageHeight)/2;/顯示imageg.drawImage(image,x,y,null);private Image image;class LabelPanel extends JPanel /labelpanelpublic LabelPanel()JLabel lable1=new JLabel("加入拉手網(wǎng),成為團(tuán)購(gòu)達(dá)人!"); lable1.setFont(new

9、Font("楷體",Font.PLAIN,20);lable1.setForeground(Color.RED);add(lable1);5子框體ZuFrame,新建布局 class ZuFrame extends JFramepublic ZuFrame()MainPanel mainpanel = new MainPanel();/主面板 ButtonPanel buttonpanel = new ButtonPanel(); Container contentPane=getContentPane(); setLayout(new GridBagLayout();/新

10、建布局 GridBagConstraints c = new GridBagConstraints(); c.gridx = 0;c.gridy = GridBagConstraints.RELATIVE;c.gridwidth = 1; c.gridheight = 1; c.fill = GridBagConstraints.BOTH;c.weightx = 1;c.weighty = 400;add(mainpanel,c);c.gridx = 0;c.gridy = GridBagConstraints.RELATIVE;c.gridwidth = 1;c.gridheight = 1

11、;c.fill = GridBagConstraints.BOTH;c.weightx = 1;c.weighty = 100;add(buttonpanel,c);6.把子框體分為兩個(gè)部分,MainPanel 和ButtonPanel,MainPanel包括email.密碼.確認(rèn)密碼.手機(jī)號(hào)碼在內(nèi)的9個(gè)panel,依次排列下來class MainPanel extends JPanel/mainPanelpublic MainPanel()setSize(WIDTH, HEIGHT);setBackground(Color.WHITE);/從Email按序排列panelMainPanelOn

12、e one = new MainPanelOne();/EmailMainPanelTwo two = new MainPanelTwo();/對(duì)email的解釋MainPanelThree three = new MainPanelThree();/賬號(hào)MainPanelFour four = new MainPanelFour();/對(duì)賬號(hào)的解釋MainPanelFive five = new MainPanelFive();/密碼MainPanelSix six = new MainPanelSix();/對(duì)密碼的解釋MainPanelSeven seven = new MainPane

13、lSeven();/確認(rèn)密碼MainPanelEight eight = new MainPanelEight();/手機(jī)號(hào)MainPanelNine nine = new MainPanelNine();/所在城市add(one);add(two);add(three);add(four);add(five);add(six);add(seven);add(eight);add(nine);public static final int WIDTH = 500;public static final int HEIGHT = 400; class ButtonPanel extends JP

14、anel implements ActionListener /buttonPanelpublic ButtonPanel()setSize(WIDTH,HEIGHT);setLayout(null);btnregister = new JButton("注 冊(cè)"); /注冊(cè) 按鈕Font fontset = new Font("宋體",Font.PLAIN,12);btnregister.setFont(fontset);btnregister.setSize(80,30);btnregister.setLocation(30, 20); btnoca

15、ncel= new JButton("取消"); /取消 按鈕Font fontlogin = new Font("宋體", Font.PLAIN,12);btnocancel.setFont(fontlogin);btnocancel.setSize(80,30);btnocancel.setLocation(380, 20);add(btnregister);add(btnocancel); btnregister.addActionListener(this);btnocancel.addActionListener(this);/實(shí)現(xiàn)抽象函數(shù)ac

16、tionPerformedpublic void actionPerformed(ActionEvent event)Object source= event.getSource();String strEmail = MainPanelOne.textEmail.getText();/得到email地址String strId = MainPanelThree.textUsername.getText();/得到賬號(hào)char passWord = MainPanelFive.textPassword.getPassword();/得到密碼char spassWord = MainPanelS

17、even.surePassword.getPassword();/得到確認(rèn)密碼String tellnumber = MainPanelEight.textTellphone.getText();/得到手機(jī)號(hào)if(source = btnregister) if(strEmail.equals("")|strId.equals("")|passWord.equals(' ')|spassWord.equals(' ')|tellnumber.equals("")/如果任意一欄沒填JOptionPane.

18、showMessageDialog(null, "請(qǐng)?zhí)钔暾淖?cè)信息");return;JOptionPane.showMessageDialog(null,"感謝您的注冊(cè),注冊(cè)成功!");/else if(source = btnocancel)System.exit(0); /繪制按鈕面板背景圖片public void paintComponent(Graphics g)super.paintComponent(g);ImageIcon img = new ImageIcon("4.jpg");g.drawImage(img.g

19、etImage(),0,0,null);public static final int WIDTH = 500;public static final int HEIGHT =80;public JButton btnregister;public JButton btnocancel;class MainPanelOne extends JPanel /注冊(cè)public static JTextField textEmail = new JTextField(30);public MainPanelOne()setBackground(Color.WHITE);textEmail.setBa

20、ckground(Color.yellow);JLabel lableEmail = new JLabel(" Email :");lableEmail.setFont(new Font("宋體",Font.PLAIN,20);lableEmail.setForeground(Color.BLUE);add(lableEmail);add(textEmail);class MainPanelTwo extends JPanel/對(duì)于注冊(cè)的解釋 public MainPanelTwo()setBackground(Color.WHITE);JLabel l

21、ableSuggest = new JLabel("用于登錄及找回密碼,不會(huì)公開,請(qǐng)放心填寫");lableSuggest.setFont(new Font("宋體",Font.PLAIN,14);lableSuggest.setForeground(Color.RED);add(lableSuggest);class MainPanelThree extends JPanel /賬號(hào) public static JTextField textUsername = new JTextField(30);public MainPanelThree()set

22、Background(Color.WHITE);textUsername.setBackground(Color.yellow);JLabel lableUsername = new JLabel("賬 號(hào):");lableUsername.setFont(new Font("宋體",Font.PLAIN,20);lableUsername.setForeground(Color.BLUE);add(lableUsername);add(textUsername);class MainPanelFour extends JPanel /對(duì)于賬號(hào)的解釋 p

23、ublic MainPanelFour()setBackground(Color.WHITE);JLabel lableSuggest = new JLabel("填寫4-6個(gè)字符,一個(gè)漢字為兩個(gè)字符");lableSuggest.setFont(new Font("宋體",Font.PLAIN,14);lableSuggest.setForeground(Color.RED);add(lableSuggest);class MainPanelFive extends JPanel /密碼 public static JPasswordField tex

24、tPassword = new JPasswordField(30);public MainPanelFive() textPassword.setEchoChar('*');textPassword.setBackground(Color.yellow);setBackground(Color.WHITE);JLabel lablePassword= new JLabel("密 碼:");lablePassword.setFont(new Font("宋體",Font.PLAIN,20);lablePassword.setForegro

25、und(Color.BLUE);add(lablePassword);add(textPassword);class MainPanelSix extends JPanel /對(duì)于密碼的解釋 public MainPanelSix() setBackground(Color.WHITE);JLabel lableSuggest = new JLabel(" 為了您的賬號(hào)安全,建議密碼至少6個(gè)字符以上");lableSuggest.setFont(new Font("宋體",Font.PLAIN,14);lableSuggest.setForeground

26、(Color.RED);add(lableSuggest);class MainPanelSeven extends JPanel /確認(rèn)密碼 public static JPasswordField surePassword=new JPasswordField(30);public MainPanelSeven() surePassword.setEchoChar('*');surePassword.setBackground(Color.yellow);setBackground(Color.WHITE);JLabel lableSurePassword = new JL

27、abel("確認(rèn)密碼:");lableSurePassword.setFont(new Font("宋體",Font.PLAIN,20);lableSurePassword.setForeground(Color.BLUE);add(lableSurePassword);add(surePassword);class MainPanelEight extends JPanel /手機(jī)號(hào) public static JTextField textTellphone = new JTextField(10);public MainPanelEight() s

28、etBackground(Color.WHITE); textTellphone.setBackground(Color.yellow);JLabel lableTellphone = new JLabel("手機(jī)號(hào)碼:");lableTellphone.setFont(new Font("宋體",Font.PLAIN,20);lableTellphone.setForeground(Color.BLUE);JLabel label = new JLabel(" 手機(jī)號(hào)碼是我們聯(lián)系您的最好方式 ");add(lableTellphone);add(textTellphone);add(label);c

溫馨提示

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

評(píng)論

0/150

提交評(píng)論