西安郵電學(xué)院 通信軟件設(shè)計

上傳人:水****8 文檔編號:28314431 上傳時間:2021-08-25 格式:DOCX 頁數(shù):8 大?。?95.65KB
收藏 版權(quán)申訴 舉報 下載
西安郵電學(xué)院 通信軟件設(shè)計_第1頁
第1頁 / 共8頁
西安郵電學(xué)院 通信軟件設(shè)計_第2頁
第2頁 / 共8頁
西安郵電學(xué)院 通信軟件設(shè)計_第3頁
第3頁 / 共8頁

下載文檔到電腦,查找使用更方便

10 積分

下載資源

還剩頁未讀,繼續(xù)閱讀

資源描述:

《西安郵電學(xué)院 通信軟件設(shè)計》由會員分享,可在線閱讀,更多相關(guān)《西安郵電學(xué)院 通信軟件設(shè)計(8頁珍藏版)》請在裝配圖網(wǎng)上搜索。

1、最新 精品 Word 歡迎下載 可修改 西 安 郵 電 學(xué) 院 實 驗 報 告 課 程 通信軟件設(shè)計 開課時間 至學(xué) 年第 學(xué)期 這個軟件主要功能是以UDP為基礎(chǔ)實現(xiàn)兩臺電腦之間收發(fā)簡單文本消息。軟件全部使用java編寫,并以JavaBuilder8為工具進(jìn)行編寫與調(diào)試。布局方式采用NULL方式,主要使用AWT的組件和部分SWING的組件。 使用方法如下: 1 首先在輸入IP地址的輸入欄中輸入想與之進(jìn)行通信的

2、主機(jī)的IP地址,即消息接受方的IP地址。 2 在消息編輯框中輸入想發(fā)送的消息內(nèi)容。 3 編輯完欲發(fā)送的消息后,點擊“發(fā)送消息”按鈕進(jìn)行發(fā)送; 4 雙方發(fā)送的消息和發(fā)送方與接受方的IP地址都會在下面的空白區(qū)域----“頻道”內(nèi)顯示。 6 如果沒有輸入IP地址便發(fā)送編輯完的文本消息,空白區(qū)域內(nèi)會顯示出提示信息提示用戶應(yīng)輸入接受方的IP地址。 7 當(dāng)頻道內(nèi)顯示的消息太多時,可以按”刷新頻道”來清除頻道內(nèi)全部信息! 軟件運行時候的抓圖: 本機(jī)測試結(jié)果的抓圖效果 程序代碼與簡要說明 1 chatFrame類的代碼: package chat;

3、 import java.io.*; import java.awt.*; /** *

Title:

*

Description:

*

Copyright: Copyright (c) 2021

*

Company:

* @author not attributable * @version 1.0 */ public class chatFrame extends JFrame { JPanel contentPane; Label label1 = new Lab

4、el(); TextField textField1 = new TextField(); Label label2 = new Label(); TextField textField2 = new TextField(); Button button1 = new Button(); TextArea textArea1 = new TextArea(); DatagramPacket sendpacket,receivepacket; //定義發(fā)送和接受數(shù)據(jù)包 DatagramSocket sendsocket,receivesocket;

5、 //定義發(fā)送和接受DatagramSocket //Construct the frame public chatFrame() { enableEvents(AWTEvent.WINDOW_EVENT_MASK); try { jbInit(); } catch(Exception e) { e.printStackTrace(); } } //Component initialization private void jbInit() throws Exception {

6、 //定義個組件和他們的布局 contentPane = (JPanel) this.getContentPane(); label2.setAlignment(Label.CENTER); label2.setForeground(Color.black); label2.setText("消息編輯框"); label1.setBounds(new Rectangle(14, 17, 133, 32)); contentPane.setLayout(null); this.setSize(new Dimensi

7、on(500, 400)); this.setTitle("用UDP實現(xiàn)聊天"); textField1.setBackground(SystemColor.text); textField1.setColumns(0); textField1.setText(""); textField1.setBounds(new Rectangle(129, 72, 200, 61)); label1.setAlignment(Label.CENTER); label1.setText("輸入對方IP地址"); la

8、bel2.setBounds(new Rectangle(23, 86, 108, 28)); try{ sendsocket=new DatagramSocket(5000); //初始化 receivesocket=new DatagramSocket(5001); } catch(SocketException se){ //可能產(chǎn)生Socketexception類的異常 se.printStackTrace(); System.exit(0); } butto

9、n1.setBackground(Color.magenta); button1.setLabel("發(fā)送消息"); button1.setBounds(new Rectangle(374, 23, 88, 42)); public void actionPerformed(ActionEvent e){ button1_actionPerformed(e); } }); textField2.setBackground(SystemColor.activeCaptionBorder);

10、 textField2.setText(""); textField2.setBounds(new Rectangle(166, 21, 169, 29)); textArea1.setText(""); textArea1.setBounds(new Rectangle(46, 157, 382, 185)); contentPane.setBackground(new Color(113, 111, 159)); jButton1.setBackground(Color.pink); jButton1.setBou

11、nds(new Rectangle(374, 86, 87, 42)); jButton1.setText("刷新頻道"); public void actionPerformed(ActionEvent e) { jButton1_actionPerformed(e); } }); contentPane.add(label1, null); contentPane.add(textField2, null); contentPane.add(textField1, null);

12、 contentPane.add(label2, null); contentPane.add(textArea1, null); contentPane.add(jButton1, null); contentPane.add(button1, null); } //Overridden so we can exit when window is closed protected void processWindowEvent(WindowEvent e) { super.processWindowEvent(e); if

13、(e.getID() == WindowEvent.WINDOW_CLOSING) { System.exit(0); } } public void waitforpackets(){ //這個方法完成接受數(shù)據(jù)包的功能 while(true){ try{ byte[]array=new byte[100]; receivepacket=new DatagramPacket(array,array.length); //創(chuàng)建接受數(shù)據(jù)包的緩沖

14、 receivesocket.receive(receivepacket); //接受數(shù)據(jù)包 textArea1.append("\nfrom "+receivepacket.getAddress() +" : "); byte data[]=receivepacket.getData(); String received=new String(data,0); //將字節(jié)數(shù)組轉(zhuǎn)化為字符串 textAre

15、a1.append(received); } catch(IOException se){ //可能產(chǎn)生的IOException類異常 textArea1.append(se.toString() +"/n"); se.printStackTrace(); } } } void button1_actionPerformed(ActionEvent e){ //這個方法完成發(fā)送數(shù)據(jù)包 String str =

16、 textField2.getText(); if(pareTo("")!=0){ try{ textArea1.append("\nto "+textField2.getText() +" : "+textField1.getText()); String s=textField1.getText(); byte data[]=new byte[100]; s.getBytes(0,s.length(),data,0); sendpacket=new

17、DatagramPacket(data,s.length(), InetAddress.getByName(textField2.getText()),5001); //創(chuàng)建發(fā)送的數(shù)據(jù)包 sendsocket.send(sendpacket); //發(fā)送數(shù)據(jù)包 } catch(IOException exc){ textArea1.append(exc.toString() +

18、"\n"); exc.printStackTrace(); } } else textArea1.setText("please input your friends IP first!"); } JButton jButton1 = new JButton(); void jButton1_actionPerformed(ActionEvent e) { textArea1.setText(""); } } 2.chatapp類的代碼: package

19、 chat; /** *

Title:

*

Description:

*

Copyright: Copyright (c) 2021

*

Company:

* @author not attributable * @version 1.0 */ public class chatApp { boolean packFrame = false; //Construct the application public chatApp() { chatF

20、rame frame = new chatFrame(); //Validate frames that have preset sizes //Pack frames that have useful preferred size info, e.g. from their layout if (packFrame) { frame.pack(); } else { frame.validate(); } //Center the window Dimension screenSize

21、 = Toolkit.getDefaultToolkit().getScreenSize(); Dimension frameSize = frame.getSize(); if (frameSize.height > screenSize.height) { frameSize.height = screenSize.height; } if (frameSize.width > screenSize.width) { frameSize.width = screenSize.width; } frame

22、.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2); frame.setVisible(true); frame.waitforpackets(); } //Main method public static void main(String[] args) { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch(Exception e) { e.printStackTrace(); } new chatApp(); } }

展開閱讀全文
溫馨提示:
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)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

相關(guān)資源

更多
正為您匹配相似的精品文檔
關(guān)于我們 - 網(wǎng)站聲明 - 網(wǎng)站地圖 - 資源地圖 - 友情鏈接 - 網(wǎng)站客服 - 聯(lián)系我們

copyright@ 2023-2025  zhuangpeitu.com 裝配圖網(wǎng)版權(quán)所有   聯(lián)系電話:18123376007

備案號:ICP2024067431-1 川公網(wǎng)安備51140202000466號


本站為文檔C2C交易模式,即用戶上傳的文檔直接被用戶下載,本站只是中間服務(wù)平臺,本站所有文檔下載所得的收益歸上傳人(含作者)所有。裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對上載內(nèi)容本身不做任何修改或編輯。若文檔所含內(nèi)容侵犯了您的版權(quán)或隱私,請立即通知裝配圖網(wǎng),我們立即給予刪除!