Java network programming
What is network programming?
Baidu Encyclopedia: network programming, in a big way, is the function of sending and receiving information, and the intermediate transmission is the physical line. The main work of network programming is to assemble the information package through the specified protocol at the sending end, and analyze the packa ...
Posted by Kestrad on Fri, 31 Dec 2021 12:22:13 +0100
UDP network programming of Socket socket one-way and two-way exception handling normal communication between two people based on UDP
UDP network programming one-way and two-way exception handling of Socket socket
Socket
It is used to describe the IP address and port. It is the handle of the communication chain. The application sends or responds to the network request through the SocketIt is the basic operation unit of network communication supporting TCP/IP protocol,It is ...
Posted by peerData on Fri, 24 Dec 2021 14:31:49 +0100
02_ UDP protocol for Java network programming
0. General
In a technical sense, because TCP needs to establish a connection, UDP can "throw vegetables" directly
Therefore, only TCP protocol has Server server and Client client. For UDP protocol, there is no Server and Client
UDP protocol features:
UDP is a connectionless and unreliable transmission protocolEncapsulate ...
Posted by CapEsiouS on Tue, 21 Dec 2021 21:12:02 +0100
Development of chat device under network communication (TCP actual combat Development) application development technology of connecting two computers -- socket module
TCP server (server)
If you want to perform the functions of the tcp server, you need to perform the following process
Socket create a socketThe bind method binds IP and portlisten makes the socket passiveaccept waits for unprovoked links (you must create a new listening socket and redefine a new receiver)recv/send receive send data
For accep ...
Posted by abitlikehomer on Tue, 21 Dec 2021 08:50:11 +0100
UDP network programming
catalogue
1 byte order
How to determine the byte order of the current byte
2-byte order conversion function
3 ip address translation function
inet_pton / / String ip address to integer data
inet_ntop / / convert integer data to string format ip address
inet_addr() and inet_ntoa()
4 UDP overview
5 network programming interface socket ...
Posted by jtrost on Mon, 20 Dec 2021 14:19:32 +0100
Network management of [Linux learning] practical series
Network management of [Linux learning] practical series
Let's start with some simple and common ones, but note that the simple and common ones should also be used skillfully
ping
As we all know, ping is used to test whether a host can communicate with each other.
The output of a ping command is as follows:
root@***:~# ping 127.0.0.1
PING 1 ...
Posted by Myss on Sat, 18 Dec 2021 22:37:25 +0100
Principle and configuration of DHCP
1. Functions and benefits of DHCP
2.2 principle
3.3 lease term
4.DHCP service
5.DHCP configuration
5.1 same network segment
5.2 different network segments - DHCP relay
summary
1. Functions and benefits of DHCP
DHCP -- Dynamic Host Configuration Protocol
Role: distribute IP address, subnet mask, gateway, DNS server, lease term and othe ...
Posted by iJoseph on Sat, 18 Dec 2021 18:19:18 +0100
3 Ubuntu18. 04 implementation of ROS UDP communication
Ubuntu18. 04 implementation of ROS UDP server communication
This section describes the udp Server sending and receiving data. UDP communication belongs to frame transmission. In the process of frame transmission, there is no requirement for the order and arrival of messages, and no verification is carried out. Therefore, UDP belongs to unrelia ...
Posted by richever on Sat, 18 Dec 2021 04:46:59 +0100
The UDP server transmits the list object to the client
https://www.oschina.net/question/1449495_149180
java serialization:
Java provides a mechanism for object serialization. In this mechanism, an object can be represented as a byte sequence, which includes the data of the object, information about the type of the object and the type of data stored in the object. After a serialized object is wr ...
Posted by JeremyMorgan on Thu, 09 Dec 2021 14:45:16 +0100
Getting to know C# -- using socket to send data
1, Basic introduction to UDP
1,Socket
Socket is the basic operation unit of network communication supporting TCP/IP protocol. Socket can be regarded as the endpoint of two-way communication between processes between different hosts. It constitutes the programming interface within a single host and between the whole network.
How sockets wo ...
Posted by mattsoftnet on Thu, 25 Nov 2021 20:58:05 +0100