Java TCP网络编程
生活随笔
收集整理的這篇文章主要介紹了
Java TCP网络编程
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
使用TCP協議編寫一個網絡程序,設置服務器端的監聽端口是8002,當與客戶端建立連接后,服務器端向客戶端發送數據“Hello, world”,客戶端收到數據后打印輸出。
服務器端代碼:
import java.io.OutputStream; import java.net.ServerSocket; import java.net.Socket;public class Tcpfwq {public static void main(String[] args) throws Exception {// TODO Auto-generated method stubnew TCPServer().listen();} } class TCPServer{private static final int PORT=8002;public void listen() throws Exception{ServerSocket seso=new ServerSocket(PORT);Socket clie=seso.accept();OutputStream os=clie.getOutputStream();os.write(("Hello, world").getBytes());Thread.sleep(5000);os.close();clie.close();} }客戶端代碼: import java.io.InputStream; import java.net.InetAddress; import java.net.Socket;public class Tcpkht {public static void main(String[] args) throws Exception{// TODO Auto-generated method stubnew TCPClient().connect();} } class TCPClient{public void connect() throws Exception{// TODO Auto-generated method stubSocket client=new Socket(InetAddress.getLocalHost(),8002);InputStream is=client.getInputStream();byte[] buf=new byte[1024];int len=is.read(buf);System.out.println(new String(buf,0,len));client.close();}}
運行結果圖:
總結
以上是生活随笔為你收集整理的Java TCP网络编程的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: android用户中心头像选择功能的方法
- 下一篇: 丘比特的烦恼