《移動通信軟件編程基礎(chǔ)-JAVA》第十二章 實驗手冊
-
資源ID:59465951
資源大?。?span id="mvyctr3" class="font-tahoma">221.04KB
全文頁數(shù):7頁
- 資源格式: DOCX
下載積分:10積分
快捷下載
會員登錄下載
微信登錄下載
微信掃一掃登錄
友情提示
2、PDF文件下載后,可能會被瀏覽器默認打開,此種情況可以點擊瀏覽器菜單,保存網(wǎng)頁到桌面,就可以正常下載了。
3、本站不支持迅雷下載,請使用電腦自帶的IE瀏覽器,或者360瀏覽器、谷歌瀏覽器下載即可。
4、本站資源下載后的文檔和圖紙-無水印,預(yù)覽文檔經(jīng)過壓縮,下載后原文更清晰。
5、試題試卷類文檔,如果標(biāo)題沒有明確說明有答案則都視為沒有答案,請知曉。
|
《移動通信軟件編程基礎(chǔ)-JAVA》第十二章 實驗手冊
第12章 網(wǎng)絡(luò)編程第12章 網(wǎng)絡(luò)編程 【實驗?zāi)繕?biāo)】 完成本章的內(nèi)容以后,您將達到:u 掌握網(wǎng)絡(luò)編程的基本概念u 編寫UDP網(wǎng)絡(luò)程序u 編寫TCP網(wǎng)絡(luò)程序本章實驗給出了全面的操作步驟,請學(xué)生按照給出的步驟獨立完成實驗,以達到要求的實驗?zāi)繕?biāo)。· 第一階段指導(dǎo)學(xué)習(xí)(40分鐘)1. 編寫兩個UDP程序,編譯并運行1) 建立文件名為“UDPSend.java”,輸入以下程序代碼。import .*;/* * 使用UDP實現(xiàn)數(shù)據(jù)發(fā)送 * 1.0版 2008年8月18日 * author xx */public class UDPSend/主函數(shù)public static void main(String args) throws ExceptionDatagramSocket ds = new DatagramSocket();/建立發(fā)送數(shù)據(jù)報套接字String StrHello = " Hello world! "/*將要傳送的信息打包為數(shù)據(jù)報包: *包數(shù)據(jù) *包長度 *目的地址 *目的端口號*/DatagramPacket dp = new DatagramPacket(StrHello.getBytes(),StrHello.length(),InetAddress.getByName("127.0.0.1"),2000);ds.send(dp);/使用數(shù)據(jù)包套按字發(fā)送數(shù)據(jù)報包ds.close();2) 建立文件名為“UDPReceive.java”,輸入以下程序代碼。import .*;/* * 使用UDP實現(xiàn)數(shù)據(jù)接收 * 1.0版 2008年8月18日 * author xx */public class UDPReceivepublic static void main(String args) throws ExceptionDatagramSocket ds = new DatagramSocket(2000);/建立接收數(shù)據(jù)包套接字byte buf = new byte1024;DatagramPacket dp = new DatagramPacket(buf,1024);/實現(xiàn)接收的數(shù)據(jù)報包ds.receive(dp);/接收數(shù)據(jù)報包/從接收到的數(shù)據(jù)報包取出數(shù)據(jù)String StrRecv = new String(dp.getData(),0,dp.getLength() + " from " + dp.getAddress().getHostAddress() + ":" + dp.getPort();System.out.println(StrRecv);ds.close();/關(guān)閉接收數(shù)據(jù)報套接字2. 編寫兩個TCP程序,編譯并運行1) 建立文件名為“TcpClient.java”,輸入以下程序代碼。import .*;import java.io.*;/* * TCP網(wǎng)絡(luò)程序客戶端 * 1.0版 2008年8月18日 * author xx */public class TcpClientpublic static void main(String args)tryif(args.length < 2)/創(chuàng)建Socket對象,實現(xiàn)網(wǎng)絡(luò)通信Socket S = new Socket(InetAddress.getByName("127.0.0.1"),6000);/連接服務(wù)端InputStream InInfo = S.getInputStream();/網(wǎng)絡(luò)數(shù)據(jù)接收流OutputStream OutInfo = S.getOutputStream();/網(wǎng)絡(luò)數(shù)據(jù)發(fā)送流OutInfo.write("OK!".getBytes();/向網(wǎng)絡(luò)發(fā)送信息byte buf = new byte1024;int Len = InInfo.read(buf);/接收從網(wǎng)絡(luò)接收到的數(shù)據(jù)System.out.println(new String(buf,0,Len);/在控制臺輸出網(wǎng)絡(luò)接收到的數(shù)據(jù)InInfo.close();/關(guān)閉輸入流OutInfo.close();/關(guān)閉輸出流S.close();/關(guān)閉網(wǎng)絡(luò)連接catch(Exception e)e.printStackTrace();2) 建立文件名為“TcpServer.java”,輸入以下程序代碼。import .*;import java.io.*;/* * TCP網(wǎng)絡(luò)程序服務(wù)器端 * 1.0版 2008年8月18日 * author xx */public class TcpServerpublic static void main(String args)tryServerSocket SS = new ServerSocket(6000);/創(chuàng)建服務(wù)器對象,端口號6000Socket S = SS.accept();/創(chuàng)建Socket對象,實現(xiàn)網(wǎng)絡(luò)信息發(fā)送與接收InputStream InInfo = S.getInputStream();/獲得網(wǎng)絡(luò)輸入流OutputStream OutInfo = S.getOutputStream();/創(chuàng)建網(wǎng)絡(luò)輸出流OutInfo.write("Welcome to IMTI!".getBytes();/如果建立了網(wǎng)絡(luò)連接發(fā)送消息給請求端byte buf = new byte1024;int Len = InInfo.read(buf);/從請求端獲取發(fā)送給服務(wù)器端的信息System.out.println(new String(buf,0,Len);/在控制臺輸入發(fā)送來信息。InInfo.close();/關(guān)閉網(wǎng)絡(luò)輸入流OutInfo.close();/關(guān)閉網(wǎng)絡(luò)輸出流S.close();/關(guān)閉Socket連接SS.close();/關(guān)閉ServerSocket連接catch(Exception e)e.printStackTrace();第二階段練習(xí)(40分鐘)習(xí)題一編寫一個簡單的UDP的聊天室窗體底部第三階段作業(yè)(課后)作業(yè)一使用Swing及其事件實現(xiàn)一個帶界面的TCP聊天程序(客戶端/服務(wù)器端)