①MAC: MAC (Media Access Control or Medium Access Control) address, meaning media access control, or physical address, Hardware address, used to define the location of a network device. In the OSI model, the third network layer is responsible for IP addresses, and the second data link layer is responsible for MAC addresses. Therefore, a host will have a MAC address, and each network address will have an IP address unique to it.
②IP address: refers to the Internet Protocol Address (Internet Protocol Address, also translated as Internet Protocol Address), which is the abbreviation of IP Address. The IP address is a unified address format provided by the IP protocol. It assigns a logical address to each network and each host on the Internet to shield the differences in physical addresses. There are still some IP proxy software, but most of them charge a fee.
#TCP/IP Network Mode
Application layerSuch as HTTP, FTP, DNS
Transport layersuch as TCP, UDP
network layersuch as IP, ICMP, IGMP
Chainsaw layerSuch as driver, interface
③Port: It can be considered as the outlet for communication between the device and the outside world.
The port number is represented by two bytes (16-bit binary number). Its value range is 0~65 535. The port number between 0~1023 is used for the following well-known network services. And applications, users' ordinary applications need to use port numbers above 1024. Ports are divided into physical ports and logical ports (numeric identification of software applications).
④TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) protocols are transport layer protocols.
The TCP protocol is a connection-oriented communication protocol that provides reliable transmission of data in an IP environment. The services it provides include data streaming, reliability, effective flow control, full-duplex operation and multiplexing. Delivered via connection-oriented, end-to-end and reliable packets. In layman's terms, it opens up a connected channel for the data to be sent in advance, and then sends the data;
⑤UDP is a wireless communication protocol and does not provide reliability, flow control or error recovery functions for IP.
2. Examples of common methods of the common InetAddress class:
This class is similar to a container. When creating the DatagramPacket object of the sender and receiver, use The construction method is different. The construction method of the receiving end only needs to receive a byte array to store the received data, while the construction method of the sending end not only needs to receive the byte array storing the sent data, but also needs to specify the IP address and port of the sending end. Number.
DatagramPacket construction method:
①DatagramPacket (byte[] buf, int length)
Used for the receiving end. When creating a DatagramPacket object, the byte array of encapsulated data is specified. and data size.
②DatagramPacket (byte[] buf, int length, InetAddress addr, int port)
Used for the sender. When creating a DatagramPacket object, the byte array, data size, and The destination IP address (addr) and port number (port) of the data packet.
③DatagramPacket (byte[] buf, int offset, int length)
Used for the receiving end. When creating a DatagramPacket object, the byte array, data size, and starting point of the encapsulated data are specified. Location. The offset parameter is used to specify that the received data starts at offset when placed into the buf buffer array.
④DatagramPacket (byte[] buf, int offset, int length, InetAddress addr, int port)
Used for the sender. When creating a DatagramPacket object, the byte array of encapsulated data is specified. Data size, destination IP address (addr) and port number (port) of the data packet. The offset parameter is used to specify the offset of sending data, that is, starting to send data from the offset position.
## Commonly used methods in the DatagramPacket class
#Method declaration
Function description
InetAddress getAddress()
This method is used to return the IP address of the sender or receiver. If the sender has a DatagramPacket object, it returns the IP address of the receiver. Otherwise, it returns the IP address of the sender
int getPort()
This method is used to return the port number of the sender or receiver. If the sender has a DatagramPacket object, it returns the port number of the receiver. Otherwise, it returns the port number of the receiver. Return the port number of the sending end
byte[] getData()
This method is used to return the data to be received or sent. If it is the DatagramPacket object of the sending end, then Returns the data to be sent, otherwise, returns the received data
int getLength()
This method is used to return the length of the data to be received or sent, If it is the DatagramPacket object of the sending end, the length of the data to be sent is returned. Otherwise, the length of the received data is returned.
2. DatagramSocket
DatagramSocket is similar to a dock. The instance object can send and receive DatagramPacket packets. When creating DatagramSocket objects at the sender and receiver, the construction methods used are different.
DatagramSocket construction method:
①DatagramSocket()
When used to create a DatagramSocket object on the sending end, the port number is not specified when creating the object. At this time, the system will Assign a port number that is not used by other network programs.
②DatagramSocket (int port)
This method can be used to create the DatagramSocket object of the receiving end, and can also create the DatagramSocket object of the sending end. When creating the DatagramSocket object of the receiving end, you must specify A port number so that you can listen on the specified port.
③DatagramSocket(int port,InetAddress addr)
When using this construction method in DatagramSocket, not only the port number is specified, but also the related IP address is specified. This situation is suitable for calculation There are multiple network cards on the computer.
## Commonly used methods in the DatagramSocket class
#Method declaration
Function description
void receive(DatagramPacket p)
This method is used to fill the received data into the DatagramPacket packet. It will be blocked until the data is received. Only when the data packet is received This method will return only when.
void send(DatagramPacket p)
This method is used to send DatagramPacket data packet. The data packet sent contains the data to be sent, the length of the data, and the remote host IP address and port number
void close()
Close the current Socket and notify the driver to release the resources reserved for this Socket.
The above is the detailed content of Detailed explanation of the use of Java network programming. For more information, please follow other related articles on the PHP Chinese website!
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation?
Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems.
Further reading: Java Stream API improvements
Understand Stream forEach
The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is
Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.