java.net.InetAddress Class: This class represents an Internet Protocol (IP) address.
Static method:
static InetAddress getLocalHost() returns the local host (your own computer).
static InetAddress getByName(String host) Determines the IP address of a host given a hostname.
Non-static methods:
String getHostAddress() Returns the IP address string (in text representation).
String getHostName() Gets the host name of this IP address.
The receiving end of UDP communication: receives the datagram packet sent by the sending end and unpacks it
* Classes related to udp:
* java.net.DatagramPacket: This class represents data Report package.
* Function: Use datagram packets to receive data from the sender
* java.net.DatagramSocket: This class represents a socket used to send and receive datagram packets.
* Function: Send datagram packets, receive datagram packets
* Socket: Network object binding IP address and port number
*
* Construction method:
* DatagramPacket( byte[] buf, int length)
* Construct DatagramPacket to receive data packets with length length.
* DatagramSocket(int port)
* Creates a datagram socket and binds it to the specified port on the local host.
*
* Member methods:
* void receive(DatagramPacket p) Receives a datagram packet from this socket.
*
* Implementation steps:
* 1. Create a DatagramPacket object and receive the datagram from the sender
* 2. Create a DatagramSocket object and match it with the port number to be specified by the system
* 3. Use the method receive in DatagramSocket to receive the datagram packet from the sender
* 4. Unpacking
* DatagramPacket has methods related to datagram packets
* int getLength() Get the length of the sender's data
* InetAddress getAddress() Gets the IP address object of the sender
* int getPort() Gets the port number of the sender (randomly assigned by the system)
* 5. Release resources
1 public static void main(String[] args) throws IOException { 2 //1.创建DatagramPacket对象,接收发送端的数据报 3 byte[] bytes = new byte[1024];//数据最大传输64kb 1024*64 4 DatagramPacket dp = new DatagramPacket(bytes, bytes.length); 5 //2.创建DatagramSocket对象,并且和系统要指定的端口号 6 DatagramSocket ds = new DatagramSocket(8888); 7 //3.使用DatagramSocket中的方法receive发送端接收数据报包 8 ds.receive(dp); 9 //4.拆包10 //int getLength() 获取发送端数据的长度11 int length = dp.getLength();12 //InetAddress getAddress() 获取发送端的IP地址对象13 String ip = dp.getAddress().getHostAddress();14 //int getPort() 获取发送端的端口号(系统随机分配的)15 int port = dp.getPort();16 17 System.out.println(new String(bytes,0,length)+"ip:"+ip+",端口号"+port);18 //5.释放资源19 ds.close();20 }
The sending end of UDP communication: Pack the data and send the datagram packet according to the IP address and port of the receiving end.
*
* Classes related to UDP:
* java.net.DatagramPacket: This type of representation Datagram packet.
* Function: Pack the data and the IP address and port number of the receiving end
* java.net.DatagramSocket: This class represents the socket used to send and receive datagram packets.
* Function: Send datagram packets, receive datagram packets
* Socket: Network object binding IP address and port number
*
* Construction method:
* DatagramPacket( byte[] buf, int length, InetAddress address, int port)
* Construct a datagram packet, which is used to send a packet of length length to the specified port number on the specified host.
* DatagramSocket()
* Constructs a datagram socket and binds it to any available port on the local host.
*
* Member methods:
* void send(DatagramPacket p) Sends a datagram packet from this socket.
*
* Implementation steps:
* 1. Create a DatagramPacket object, encapsulate the data and the IP address and port number of the receiving end (create a container)
* 2. Create a DatagramSocket object (create a dock)
* 3. Use the method send in DatagramSocket to send datagram packets
* 4. Release resources
*
* UDP communication is for connectionless: data can be sent regardless of whether there is a receiving end or not. Data loss will occur at the receiving end
1 public static void main(String[] args) throws IOException { 2 //1.创建DatagramPacket对象,封装数据和接收端的IP地址,端口号(创建集装箱) 3 byte[] bytes = "你好UDP!".getBytes(); 4 InetAddress address = InetAddress.getByName("127.0.0.1"); 5 DatagramPacket dp = new DatagramPacket(bytes, bytes.length, address, 8888); 6 //2.创建DatagramSocket对象(创建码头) 7 DatagramSocket ds = new DatagramSocket(); 8 //3.使用DatagramSocket中的方法send发送数据报包 9 ds.send(dp);10 //4.释放资源11 ds.close();12 }
Client of TCP communication: sends a request connection to the server and receives data written back by the server
*
* Represents the client's class:
* java.net.Socket: This class implements client sockets (it can also be called "sockets").
*
* Constructor:
* Socket(InetAddress address, int port) Creates a stream socket and connects it to the specified port number of the specified IP address.
* Socket(String host, int port) Creates a stream socket and connects it to the specified port number on the specified host.
*
* Member methods:
* OutputStream getOutputStream() Returns the output stream of this socket.
* InputStream getInputStream() Returns the input stream of this socket.
*
* Note: For data interaction between the client and the server, you cannot use the stream object created by yourself. You must use the stream provided in Socket
*
* Implementation steps:
* 1. Create a client Socket object and bind the IP address and port number of the server
* 2. Use the method getOutputStream in the Socket to obtain the network output stream
* 3. Use the method write in the OutputStream network stream to send data to the server
* 4. Use the method getInputStream in Socket to obtain the network input stream
* 5. Use the method read in the InputStream network stream to read the data written back by the server
* 6. Release resources
*
* Note: TCP is connection-oriented communication. The server must be started first. After starting the client, if the server is not started
* , ConnectException will be thrown: Connection refused: connect
1 public static void main(String[] args) throws IOException { 2 //1.创建客户端Socket对象,绑定服务器的IP地址和端口号 3 Socket socket = new Socket("127.0.0.1", 9999); 4 //2.使用Socket中的方法getOutputStream获取网络输出流 5 OutputStream os = socket.getOutputStream(); 6 //3.使用OutputStream网络流中的方法write给服务器发送数据 7 os.write("你好服务器".getBytes()); 8 //4.使用Socket中的方法getInputStream获取网络输入流 9 InputStream is = socket.getInputStream();10 //5.使用InputStream网络流中的方法read读取服务器回写的数据11 byte[] bytes = new byte[1024];12 int len = is.read(bytes);13 System.out.println(new String(bytes,0,len));14 //6.释放资源15 socket.close();16 }
TCP通信的服务器端:接收客户端的发送的数据,给客户端回写数据
*
* 表示服务器的类:
* java.net.ServerSocket:此类实现服务器套接字。
*
* 构造方法:
* ServerSocket(int port) 创建绑定到特定端口的服务器套接字。
*
* 有一件特别重要的事:服务器必须的知道是哪个客户端请求的服务器
* 所有可以使用accept方法获取请求的客户端
* 成员方法:
* Socket accept() 侦听并接受到此套接字的连接。
*
* 实现步骤:
* 1.创建ServerSocket对象,和系统要指定的端口号
* 2.使用ServerSocket中的方法accept获取请求的客户端对象
* 3.使用Socket中的方法getInputStream获取网络输入流
* 4.使用InputStream网络流中的方法read读取客户端发送的数据
* 5.使用Socket中的方法getOutputStream获取网络输出流
* 6.使用OutputStream网络流中的方法write给客户端回写数据
* 7.释放资源(ServerSocket,Socket)
1 public static void main(String[] args) throws IOException { 2 //1.创建ServerSocket对象,和系统要指定的端口号 3 ServerSocket server = new ServerSocket(9999); 4 //2.使用ServerSocket中的方法accept获取请求的客户端对象 5 Socket socket = server.accept(); 6 //3.使用Socket中的方法getInputStream获取网络输入流 7 InputStream is = socket.getInputStream(); 8 byte[] bytes = new byte[1024]; 9 //4.使用InputStream网络流中的方法read读取客户端发送的数据10 int len = is.read(bytes);11 System.out.println(new String(bytes,0,len));12 //5.使用Socket中的方法getOutputStream获取网络输出流13 OutputStream os = socket.getOutputStream();14 //6.使用OutputStream网络流中的方法write给客户端回写数据15 os.write("收到".getBytes());16 //7.释放资源(ServerSocket,Socket)17 socket.close();18 server.close();19 }
The above is the detailed content of Detailed explanation of Socket network programming. For more information, please follow other related articles on the PHP Chinese website!

随着互联网技术的不断发展,DNS解析越来越成为程序开发中不可忽视的要素。在Go编程中,如何使用DNS解析呢?这篇文章将探讨这方面的知识。DNS解析是什么?DNS解析是指域名系统解析,是互联网传输数据的基础。每个网站都会拥有一个域名,如www.google.com,该域名可以将网站的IP地址委托给DNS服务器管理,当用户在浏览器输入该网站域名时,DNS服务器将

一、基于TCP协议的socket套接字编程1、套接字工作流程先从服务器端说起。服务器端先初始化Socket,然后与端口绑定(bind),对端口进行监听(listen),调用accept阻塞,等待客户端连接。在这时如果有个客户端初始化一个Socket,然后连接服务器(connect),如果连接成功,这时客户端与服务器端的连接就建立了。客户端发送数据请求,服务器端接收请求并处理请求,然后把回应数据发送给客户端,客户端读取数据,最后关闭连接,一次交互结束,使用以下Python代码实现:importso

本篇文章给大家带来了关于php+socket的相关知识,其中主要介绍了IO多路复用,以及php+socket如何实现web服务器?感兴趣的朋友下面一起来看一下,希望对大家有帮助。

SpringBoot端第一步,引入依赖首先我们需要引入WebSocket所需的依赖,以及处理输出格式的依赖com.alibabafastjson1.2.73org.springframework.bootspring-boot-starter-websocket第二步,创建WebSocket配置类importorg.springframework.context.annotation.Bean;importorg.springframework.context.annotation.Config

php socket无法连接的解决办法:1、检查php是否开启socket扩展;2、打开php.ini文件,检查“php_sockets.dll”是否被加载;3、取消“php_sockets.dll”的注释状态即可。

随着互联网的发展,文件传输成为人们日常工作和娱乐中不可或缺的一部分。然而,传统的文件传输方式如邮件附件或文件分享网站存在一定的限制,无法满足实时性和安全性的需求。因此,利用PHP和Socket技术实现实时文件传输成为了一种新的解决方案。本文将介绍利用PHP和Socket技术实现实时文件传输的技术原理、优点和应用场景,并通过具体案例来演示该技术的实现方法。技术

C#中常见的网络通信和安全性问题及解决方法在当今互联网时代,网络通信已经成为了软件开发中必不可少的一部分。在C#中,我们通常会遇到一些网络通信的问题,例如数据传输的安全性、网络连接的稳定性等。本文将针对C#中常见的网络通信和安全性问题进行详细讨论,并提供相应的解决方法和代码示例。一、网络通信问题网络连接中断:网络通信过程中,可能会出现网络连接的中断,这会导致

本篇文章给大家带来了关于php+socket的相关知识,其中主要介绍了什么是socket?php+socket如何实现客户端与服务端数据传输?感兴趣的朋友下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
