<< < 11 12 13 14 15 16 17 18 19 20 21 > >>   ∑:488  Sort:Date

Socket Network Communication
This chapter provides tutorial notes and example codes on socket network communication. Topics include introduction to socket communication; creating a server socket and listening for connection requests; creating a client socket and connects to a server socket; creating server application for multi...
2022-10-01, 199🔥, 0💬

Labeled "break" Statements
This section describes labeled 'break' statement, which is a branching statement that transfers the control to the end of the labeled enclosing block statement.
2022-10-01, 199🔥, 0💬

Charset.decode() - Method to Decode Byte Sequences
This section provides a tutorial example on how to decode byte sequences back to characters with a given encoding using different decoding methods provided by JDK: CharsetDecoder.decode(), Charset.decode(), new String(), InputStreamReader.read()
2021-07-27, 199🔥, 1💬

💬 2021-07-27 aqweqweqwe: %2fWebForms%2fLogin.aspx%3fReturnUrl %3d%252fWebForms%252f...

Viewing Encoded Text Files in Web Browsers
This section provides a tutorial example on how to view text files with different encodings with Web browser Internet Explorer. The encoded text file should be modified to add proper HTML tags using the sample program EncodingHtml.java.
2022-10-01, 198🔥, 0💬

DOMParser.java - Parsing XML Files with DOM
This section provides a tutorial example on how to write an XML file parser, DOMParser.java, with the org.w3c.dom.Document class included in JDK.
2022-10-01, 198🔥, 0💬

SAXValidator.java - XML DTD Validation with SAX
This section provides a tutorial example on how to write a DTD validator using SAX classes in JDK. The validator can validate an XML file against the specified DTD statements.
2022-10-01, 198🔥, 0💬

HelloDocumented.java - javadoc-Style Comments
This section provides a tutorial example of how to add javadoc-style comments in Java class source code.
2022-10-01, 198🔥, 0💬

Java Execution Console - "in", "out" and "err" Data Streams
This section provides a tutorial example on how to use default input and output data streams: System.in, System.out and System.err.
2022-10-01, 198🔥, 0💬

Control Flow Statements
This chapter provides tutorial notes and Control Flow Statements. Topics include decision-making statements: 'if' and 'switch' statements; looping statements: 'for', 'while' and 'do' statements; branching statements: 'break', 'continue', and 'return' statements.
2022-10-01, 198🔥, 0💬

Datagram Network Communication
This chapter provides tutorial notes and example codes on datagram network communication. Topics include introduction to datagram communication; creating a datagram server and listening for incoming packets; creating a datagram client and sends packets to a server; sample programs: DatagramServer.ja...
2022-10-01, 197🔥, 0💬

What Is a Datagram?
This section describes what is a datagram - An independent and self-contained message sent over the network whose arrival, arrival time, and content are not guaranteed.
2022-10-01, 197🔥, 0💬

Secret Key Generation and Management
This chapter provides tutorial notes and example codes on secret keys. Topics include secret keys for Blowfish, DES, or HmacMD5 encryption algorithms; key generator class; test program to generate secret keys and save them in files.
2022-10-01, 197🔥, 0💬

"ThreadGroup" Class - Container of Threads and Thread Groups
This section describes the 'ThreadGroup' class and its main methods. A 'ThreadGroup' object is a container of threads and thread groups.
2022-10-01, 197🔥, 0💬

References
List of reference materials used in this Java tutorial book.
2022-10-01, 197🔥, 0💬

Use 'class' to Define Enumeration
This section provides a tutorial on how to define a set of enumeratin constants use a 'class' declaration statement.
2022-10-01, 197🔥, 0💬

Launching Hello.java - My First Java Program
This section provides a tutorial example on how to launch a simple java program using the 'java' tool without any options.
2022-10-01, 196🔥, 0💬

"jimage info|list" - Listing JIMAGE Entries
This section provides a tutorial example on how to use 'jimage info|list' commands to view JIMAGE file info and list IMAGE entries.
2022-10-01, 196🔥, 0💬

XSLTransformer.java - XML Transformer
This section provides a tutorial example on how to write an XML transformer program, XSLTransformer.java, using XSL (Extensible Stylesheet Language).
2022-10-01, 195🔥, 0💬

StringBuffer - The String Buffer Class
This chapter describes the StringBuffer class included in the java.lang package. Topics include StringBuffer properties and methods, implementing a simple string buffer class, comparing performances of String and StringBuffer classes.
2022-10-01, 195🔥, 0💬

Number Object and Numeric String Conversion
This chapter provides tutorial notes and example codes on numeric string format. Topics include using java.util.NumberFormat.format( )method to format numeric values into text strings; using java.util.DecimalFormat.parse( )method to parse date strings into objects.
2022-10-01, 192🔥, 0💬

Supported Character Encodings in JDK
This section provides a tutorial example on how to display a list character encodings supported by JDK with the java.nio.charset.Charset.avail ableCharsets()method.
2022-10-01, 192🔥, 0💬

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.
2022-10-01, 192🔥, 0💬

Character Set Encoding Classes and Methods
This chapter provides tutorial notes and example codes on character set related classes. Topics include collection types: what is character encoding; JDK supported encodings like: CP1252, ISO-8859, ASCII, UTF-8, UTF-16, GB18030; methods to encode characters to byte sequences; methods to decode byte ...
2022-10-01, 191🔥, 0💬

DOM (Document Object Model) - API for XML Files
This chapter provides tutorial notes and example codes on DOM (Document Object Model). Topics include parsing XML files into DOM objects; browsing DOM object tree; building new DOM objects; converting DOM objects to XML files.
2022-10-01, 191🔥, 0💬

<< < 11 12 13 14 15 16 17 18 19 20 21 > >>   ∑:488  Sort:Date