資源描述:
《達(dá)內(nèi)生產(chǎn)實(shí)習(xí)報(bào)告qq聊天軟件》由會(huì)員上傳分享,免費(fèi)在線閱讀,更多相關(guān)內(nèi)容在應(yīng)用文檔-天天文庫。
1、達(dá)內(nèi)生產(chǎn)實(shí)習(xí)報(bào)告目錄1前言31.1實(shí)習(xí)背景31.2實(shí)習(xí)環(huán)境2實(shí)習(xí)內(nèi)容42.1實(shí)習(xí)過程42.3主要成果113總結(jié)123.1實(shí)習(xí)體會(huì)123.2其它意見13學(xué)生實(shí)習(xí)鑒定14第12頁達(dá)內(nèi)科技西安分中心聯(lián)系方式:029—822226011前言1.1實(shí)習(xí)背景由于學(xué)校課程要求加上專業(yè)限制,學(xué)校根據(jù)教學(xué)要求。組織我們于2010年7月2號(hào)至2010年7月4號(hào)參加生產(chǎn)實(shí)習(xí)。實(shí)習(xí)單位是達(dá)內(nèi)科技有限公司。1.2實(shí)習(xí)環(huán)境在linux系統(tǒng)下面,使用EJAVALIPSE開發(fā)工具,使用java語言進(jìn)行支持跨平臺(tái)的即時(shí)通訊軟件研發(fā)。在實(shí)習(xí)其間跟隨項(xiàng)目經(jīng)理進(jìn)行了qq聊天通訊工具的設(shè)計(jì),實(shí)習(xí)期間分別對(duì)qq的通訊原理,界
2、面設(shè)計(jì),通訊過程,進(jìn)行了詳細(xì)的分析與操作。第12頁達(dá)內(nèi)科技西安分中心聯(lián)系方式:029—822226012實(shí)習(xí)內(nèi)容2.1實(shí)習(xí)過程在實(shí)習(xí)期間跟隨項(xiàng)目經(jīng)理,在linux系統(tǒng)下面,使用EJAVALIPSE開發(fā)工具,使用java語言進(jìn)行支持跨平臺(tái)的即時(shí)通訊軟件研發(fā)。我們主要進(jìn)行了qq聊天通訊工具的設(shè)計(jì),實(shí)習(xí)期間分別對(duì)qq的通訊原理,界面設(shè)計(jì),通訊過程,進(jìn)行了詳細(xì)的分析。2.2實(shí)習(xí)內(nèi)容第一天開學(xué)典禮及實(shí)習(xí)主要內(nèi)容的介紹,Java語言的一些簡單操作第二天Java中的標(biāo)識(shí)符,關(guān)鍵字,數(shù)據(jù)類型的簡單介紹Ifelse,while,dowhile語句的使用第三天通過寫類創(chuàng)建對(duì)象,面向?qū)ο蟮奶卣鲀绍妼?duì)站游
3、戲第四天圖形界面開發(fā)與及時(shí)通訊系統(tǒng)項(xiàng)目概要設(shè)計(jì)及時(shí)通訊系統(tǒng)客戶端界面設(shè)計(jì)第五天及時(shí)通訊系統(tǒng)客戶端界面進(jìn)一步設(shè)計(jì)面試技巧及職業(yè)生涯規(guī)劃第六天完成及時(shí)通訊系統(tǒng)客戶端界面的設(shè)計(jì)程序一importjava.awt.BorderLayout;importjava.awt.Color;importjava.awt.Dimension;importjava.awt.FlowLayout;importjava.awt.Font;importjava.awt.event.ActionEvent;importjava.awt.event.ActionListener;importjava.io.IOE
4、xception;importjava.io.ObjectInputStream;importjava.io.ObjectOutputStream;importjava.io.OutputStream;importjava.net.Socket;importjavax.swing.DefaultListModel;importjavax.swing.ImageIcon;importjavax.swing.JButton;importjavax.swing.JFrame;importjavax.swing.JLabel;importjavax.swing.JList;importja
5、vax.swing.JMenu;importjavax.swing.JMenuBar;importjavax.swing.JMenuItem;第12頁達(dá)內(nèi)科技西安分中心聯(lián)系方式:029—82222601importjavax.swing.JOptionPane;importjavax.swing.JPanel;importjavax.swing.JScrollPane;importjavax.swing.JTextArea;importjavax.swing.JTextField;publicclassClientextendsJFrameimplementsActionListe
6、ner{//northJPanelnorth=newJPanel();JMenuBarbar=newJMenuBar();JMenum1=newJMenu("conServer");JMenum2=newJMenu("about");JMenuItemconServer=newJMenuItem("conServer");JMenuItemdisServer=newJMenuItem("disServer");JMenuItemexit=newJMenuItem("exit");JMenuItemabout=newJMenuItem("aboutSoft");ImageIconic
7、on=newImageIcon(Client.class.getResource("top.jpg"));JLabelimg=newJLabel(icon);//westJPanelwest=newJPanel();ImageIconicon2=newImageIcon(Client.class.getResource("left.jpg"));JLabelimg2=newJLabel(icon2);DefaultListModeldlm=newDefaultList