温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2021-09-18 03:39:07 来源:亿速云 阅读:106 作者:chen 栏目:编程语言

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

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI