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


标题名称:javaTcp通信客户端与服务器端实例代码
分享路径:http://pwwzsj.com/article/jihges.html