千家信息网

javaTcp通信客户端与服务器端实例代码

发表于:2025-01-19 作者:千家信息网编辑
千家信息网最后更新 2025年01月19日,本篇内容介绍了"javaTcp通信客户端与服务器端实例代码"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所
千家信息网最后更新 2025年01月19日javaTcp通信客户端与服务器端实例代码

本篇内容介绍了"javaTcp通信客户端与服务器端实例代码"的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

本文实例讲述了java Tcp通信客户端与服务器端。分享给大家供大家参考,具体如下:

由服务器端发送数据

服务器端:

import java.io.*;import java.net.*;public class TestSocket { public static void main(String[] args) { try { ServerSocket ss = new ServerSocket(8888); while(true) { Socket s = ss.accept(); OutputStream os = s.getOutputStream(); DataOutputStream dos = new DataOutputStream(os); dos.writeUTF("hello" + s.getInetAddress() + "port" + s.getPort() + "beybye"); dos.close();// os.flush(); os.close();// s.close(); } } catch (IOException e) { e.printStackTrace(); System.out.println("there is a wrong"); } }}

用户端:

import java.io.*;import java.net.*;public class TestClient { public static void main(String[] args){ try { Socket s = new Socket("127.0.0.1",8888); DataInputStream dis = new DataInputStream(s.getInputStream()); System.out.println(dis.readUTF()); s.close(); dis.close(); } catch (Exception e) { e.printStackTrace(); } }}

无论是客户端还是服务器端都可以收发数据。

交互型

用户端

import java.io.*;import java.net.*;public class TestClient2 { public static void main(String[] args){ try { Socket s = new Socket("127.0.0.1",8886); DataOutputStream dos = new DataOutputStream(s.getOutputStream()); DataInputStream dis = new DataInputStream(s.getInputStream()); System.out.println(dis.readUTF()); dos.writeUTF("hey"); String str = null; if((str = dis.readUTF()) != null) { System.out.println(str); } s.close(); dis.close(); dos.close(); } catch (Exception e) { e.printStackTrace(); } }}

服务器端:

public class TestServer2 { public static void main(String[] args) { InputStream in = null; OutputStream out = null; try { ServerSocket ss = new ServerSocket(8886); while(true) { Socket s = ss.accept(); in = s.getInputStream(); out = s.getOutputStream(); DataOutputStream dos = new DataOutputStream(s.getOutputStream()); DataInputStream dis = new DataInputStream(s.getInputStream()); String str = null; if((str = dis.readUTF() )!= null) { System.out.println(str); System.out.println("form " + s.getInetAddress()); System.out.println("port " + s.getPort());// dos.writeUTF("hello" + s.getInetAddress() + "port" + s.getPort() + "beybye"); } dos.writeUTF("hi hello"); dis.close(); dos.close(); s.close(); } } catch (IOException e) { e.printStackTrace(); System.out.println("there is a wrong"); } }}

"javaTcp通信客户端与服务器端实例代码"的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注网站,小编将为大家输出更多高质量的实用文章!

0