JDK Tutorials - Herong's Tutorial Examples - v6.32, by Herong Yang
What Is a Socket?
This section describes what is a socket - An concept represents one end-point of a two-way communication link between two programs running on the Internet network.
Socket: An concept represents one end-point of a two-way communication link between two programs running on the Internet network.
Internet Address: A unique number to identify each computer system on the Internet.
Port: A number representing an entry point of on a computer system on the Internet, where a two-way communication link can be established.
Local System: The computer system at this end of a two-way communication link.
Remote System: The computer system at the other end of a two-way communication link.
A two-way communication link on the Internet involves:
The following diagram illustrates how an application program can use a socket to talk with other application programs running on another computer system through a two-way communication link on the Internet:
Computer System I Computer System II i/o |Address a| Internet |Address b| i/o App. A<--->Socket|Port 1 |<-------------->| Port 2|Socket<--->App. X
Table of Contents
Date, Time and Calendar Classes
Date and Time Object and String Conversion
Number Object and Numeric String Conversion
Locales, Localization Methods and Resource Bundles
Calling and Importing Classes Defined in Unnamed Packages
HashSet, Vector, HashMap and Collection Classes
Character Set Encoding Classes and Methods
Encoding Conversion Programs for Encoded Text Files
Establishing a Socket Communication Link
ReverseEchoer.java - A Simple Server Socket Application
SocketClient.java - A Simple Client Socket Application
ReverseEchoServer.java - A Multi-Connection Socket Server
Binding Sockets to Specific Ports
Datagram Network Communication
DOM (Document Object Model) - API for XML Files
DTD (Document Type Definition) - XML Validation
XSD (XML Schema Definition) - XML Validation
XSL (Extensible Stylesheet Language)
Message Digest Algorithm Implementations in JDK
Private key and Public Key Pair Generation
PKCS#8/X.509 Private/Public Encoding Standards
Digital Signature Algorithm and Sample Program
"keytool" Commands and "keystore" Files
KeyStore and Certificate Classes
Secret Key Generation and Management
Cipher - Encryption and Decryption
The SSL (Secure Socket Layer) Protocol
SSL Socket Communication Testing Programs