Detailed explanation of Socket network programming
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!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

C++ provides a rich set of open source libraries covering the following functions: data structures and algorithms (Standard Template Library) multi-threading, regular expressions (Boost) linear algebra (Eigen) graphical user interface (Qt) computer vision (OpenCV) machine learning (TensorFlow) Encryption (OpenSSL) Data compression (zlib) Network programming (libcurl) Database management (sqlite3)

The C++ standard library provides functions to handle DNS queries in network programming: gethostbyname(): Find host information based on the host name. gethostbyaddr(): Find host information based on IP address. dns_lookup(): Asynchronously resolves DNS.

There are 12 levels of Python exams, from beginner to advanced, in order to master Python's basic syntax, advanced features, advanced concepts and underlying mechanisms, etc., with gradually increasing difficulty.

Commonly used protocols in Java network programming include: TCP/IP: used for reliable data transmission and connection management. HTTP: used for web data transmission. HTTPS: A secure version of HTTP that uses encryption to transmit data. UDP: For fast but unstable data transfer. JDBC: used to interact with relational databases.

Java entry-to-practice guide: including introduction to basic syntax (variables, operators, control flow, objects, classes, methods, inheritance, polymorphism, encapsulation), core Java class libraries (exception handling, collections, generics, input/output streams , network programming, date and time API), practical cases (calculator application, including code examples).

C++ functions can achieve network security in network programming. Methods include: 1. Using encryption algorithms (openssl) to encrypt communication; 2. Using digital signatures (cryptopp) to verify data integrity and sender identity; 3. Defending against cross-site scripting attacks ( htmlcxx) to filter and sanitize user input.

The time it takes to master Golang varies from person to person, but it usually takes a few months to a few years. Learning stages include: Basic (1-2 months), Intermediate (3-6 months), Advanced (6-12 months or longer). Factors that accelerate learning include ongoing practice, project work, community involvement, and online resources. Influencing factors include prior programming experience, frequency of study, and study materials.

The key functions for parsing addresses in the Go language include: net.ParseIP(): Parse IPv4 or IPv6 addresses. net.ParseCIDR(): Parse CIDR tags. net.ResolveIPAddr(): Resolve hostname or IP address into IP address. net.ResolveTCPAddr(): Resolve host names and ports into TCP addresses. net.ResolveUDPAddr(): Resolve host name and port into UDP address.
