網(wǎng)絡編程實現(xiàn)客戶端與服務端的交互_第1頁
網(wǎng)絡編程實現(xiàn)客戶端與服務端的交互_第2頁
網(wǎng)絡編程實現(xiàn)客戶端與服務端的交互_第3頁
網(wǎng)絡編程實現(xiàn)客戶端與服務端的交互_第4頁
網(wǎng)絡編程實現(xiàn)客戶端與服務端的交互_第5頁
已閱讀5頁,還剩3頁未讀 繼續(xù)免費閱讀

下載本文檔

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

文檔簡介

1、在Socket的程序開發(fā)中,服務器端使用ServerSocket等待客戶端的鏈接,對于Java的網(wǎng)路程序來講,每一個客戶端使用一個Socket對象表示。ServerSocketServerSocket類主要用在服務器端程序的開發(fā)上,用于接收客戶端的鏈接請求。方法類型描述1Public ServerSocket(int port) throws IOException構(gòu)造創(chuàng)建ServerSocket實例,并指定監(jiān)聽端口2Public Socket accept() throws IOException普通等待客戶端連接,此方法連接之前一直阻塞3Public InetAddress getInet

2、Address()普通返回服務器的IP地址4Public boolean isClosed()普通返回ServerSocket的關(guān)閉狀態(tài)5Public void close() throws IOException普通關(guān)閉ServerSocketSocket在服務器端每次運行時都要使用accept()方法等待客戶端連接,此方法執(zhí)行之后服務器端講進入阻塞狀態(tài),直到客戶端連接之后程序才可以向下繼續(xù)執(zhí)行,此方法的返回值是Socket,每一個Socket都表示一個客戶端對象。方法類型描述1Public Socket(String host,int port) throws UnKnownHostExc

3、etion,IOException構(gòu)造構(gòu)造Socket對象,同時指定要連接服務器的主機名稱及連接端口。2Public InputStream getInputStream() throws IOException普通返回此套接字的輸入流3Public OutputStream getOutputStream() throws IOException普通返回此套接字的輸出流4Public void close() throws IOException普通關(guān)閉此Socket5Public Boolean isClosed()普通判斷此套接字是否被關(guān)閉多線程:Java的多線程實現(xiàn):有兩種方式:1.

4、繼承Thread類2. 實現(xiàn)Runnable接口繼承Thread類一個類只要繼承了Thread類,此類就稱為多線程操作類,在Thread子類中,必須覆寫run()方法,此方法為線程的主體。BufferedReader是從緩沖區(qū)之中讀取內(nèi)容,所有的輸入的字節(jié)數(shù)據(jù)都將放在緩沖區(qū)之中。BufferedReader實例化BufferedReader buf=new BufferedReader(new InputStreamReader(System.in);InputStreamReader是R eader的子類,將輸入的字節(jié)流轉(zhuǎn)化為字符流。對象輸出流:ObjectOutputStream方法或常量

5、類型描述1Public ObjectOutputStream(OutputStream out) throws IOException構(gòu)造傳入輸出的對象2Public final void writeObject(Object obj) throws IOException普通輸出對象對象輸入流:ObjectInputStream方法或常量類型描述1Public ObjectInputStream (InputStream in) throws IOException構(gòu)造構(gòu)造輸入對象2Public final Object readObject() throws IOException, Cl

6、assNotFoundException普通從指定位置讀取對象以下代碼實現(xiàn)了服務端與客戶端的交互:里面包含了網(wǎng)絡編程、線程、流等知識點源代碼:Server.java中的代碼import java.io.*;import .*;public class Server ServerSocket server; / 聲明ServerSocketpublic Server() try server = new ServerSocket(5566); / 構(gòu)建服務,綁定端口 catch (IOException e) / TODO 自動生成 catch 塊e.printStackTrace();publ

7、ic void startServer() /定義startServer方法,由此啟動服務ServerThread st = new ServerThread(); /new出一個新線程st.start(); /啟動線程public static void main(String args) Server s1 = new Server(); /用Server類創(chuàng)建一個S1對象,此為對象實例化s1.startServer();/調(diào)用startServer()方法class ServerThread extends Thread /繼承Thread類public void run() while

8、 (true) try System.out.println(開始監(jiān)聽:);Socket formClient = server.accept();ObjectOutputStream oos = new ObjectOutputStream(formClient.getOutputStream();BufferedReader buf = new BufferedReader(new InputStreamReader(System.in);System.out.println(請輸入:);String s = buf.readLine();oos.writeObject(s);Object

9、InputStream ois = new ObjectInputStream(formClient.getInputStream();String sc = (String) ois.readObject();System.out.println(客戶端說: + sc);Thread.sleep(100); catch (IOException e) / TODO 自動生成 catch 塊e.printStackTrace(); catch (ClassNotFoundException e) / TODO 自動生成 catch 塊e.printStackTrace(); catch (In

10、terruptedException e) / TODO 自動生成 catch 塊e.printStackTrace();Client.java中的代碼:import java.io.*;import .*;public class Client public static void main(String args) while (true) try Socket toServer = new Socket(InetAddress.getLocalHost(), 5566);BufferedReader buf = new BufferedReader(new InputStreamRead

11、er(System.in);ObjectInputStream ois = new ObjectInputStream(toServer.getInputStream();String s = (String) ois.readObject();System.out.println(服務器端說: + s);ObjectOutputStream oos = new ObjectOutputStream(toServer.getOutputStream();System.out.println(請輸入:);String sc = buf.readLine();oos.writeObject(sc); catch (UnknownHostException e) / TODO 自動生成 catch 塊e.printStackTrace(); catch (IOException e) / TODO 自動生成 catch 塊e.printStackTrace(); catch (ClassNotFoundException e) / TODO 自動生成 catch 塊e.printStackTrace();運行說明把Server.java和Client.java兩個文件放到同一個文件夾,比如放在F:網(wǎng)絡編程 文件夾下。運行步驟:開始-運行-cmd-cd F:網(wǎng)絡編程-F:-j

溫馨提示

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

評論

0/150

提交評論