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

"do" Statements
This section describes 'do' statement, which is a looping statement that executes the contained statement immediately, then repeat it while a given condition is true.
2022-10-01, 189🔥, 0💬

Generic Methods and Type Inference
This chapter provides tutorial notes and example codes on generic methods and type inference. Topics include what is a generic method; declaring type parameters; specifying type arguments; compiler performing type argument inference; using type parameter in parameterized types.
2022-10-01, 188🔥, 0💬

java.util.Date - JDK Class to Measure Date and Time
This section provides a tutorial example on how to use the java.util.Date class to measure date and time. The Date class does not carry any calendar information.
2022-10-01, 187🔥, 0💬

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

What Is SSL (Secure Socket Layer)?
This section provides a quick introduction of the SSL (Secure Socket Layer) protocol, which provides security protection on data being transferred over the Internet.
2022-10-01, 187🔥, 0💬

Archived: Installing JDK 12 on Windows
This section provides a tutorial example on how to download and install JDK 12, which includes some nice Java tools, on a Windows system.
2022-10-01, 187🔥, 0💬

Character Set Encoding Maps
This chapter provides tutorial notes and example codes on character set encoding maps. Topics include collection types: encoding map analyzer program; analyzing and print encoding maps for US-ASCII, ISO-8859-1/Latin 1, Windows CP1252, Unicode UTF-8, UTF-16, UTF-16LE, UTF-16BE; sample program to coun...
2022-10-01, 186🔥, 0💬

Reading and Writing Certificates in DER and RFC Formats
This section provides test results of using my JcaCertificateTest.java program to read in certificates in DER and RFC formats. Those certificates are generated with the 'keytool' command tool.
2022-10-01, 186🔥, 0💬

"if-then" Statements
This section describes 'if-then' statement, which is a decision-making statement that executes contained sub-statements only when the given 'boolean' expression is 'true'.
2022-10-01, 186🔥, 0💬

"break" Statements
This section describes 'break' statement, which is a branching statement that transfers the control to the end of the immediate enclosing 'switch', 'while', 'do', or 'for' statement.
2022-10-01, 186🔥, 0💬

DatagramServer.java - A Datagram Server Application
This section provides a tutorial example on how to write a network application, DatagramServer.java, that creates a datagram server socket and listens for incoming packets.
2022-10-01, 184🔥, 0💬

SAX (Simple API for XML) Implementation in JDK
This section provides a tutorial example on how to write a simple program to find out what are the implementation classes for the SAX interfaces in JDK. The key is to call the javax.xml.parsers.SAXParserFac tory.newInstance()method.
2022-10-01, 184🔥, 0💬

Downloading and Installing JDK on Mac
This section describes how to download and install JDK 13 on a Mac computer
2022-10-01, 184🔥, 0💬

The Automated Garbage Collection Process
This section a tutorial example on how to find out when the garbage collector automatically performing the garbage collection process.
2022-10-01, 184🔥, 0💬

"while" Statements
This section describes 'while' statement, which is a looping statement that executes the contained statement repeatedly while a given condition is true.
2022-10-01, 184🔥, 0💬

What Is Date-Time API
This section provides introductions on what the Date-Time API introduced in Java 8 (JDK 1.8). The Date-Time API is replacing the java.util.Date class and the java.util.GregorianCalendar class.
2022-10-01, 182🔥, 0💬

Data Structures of Collection Implementations
This section describes different types of data structures that can be used to implement collections: Array, Linked List, Binary Tree, and Hash Table. Implementing collections with different data structures will have different performance impacts.
2022-10-01, 182🔥, 0💬

Character Set Encoding Map Analyzer
This section provides a tutorial example on how to write a simple program to analyze and print out the encoding map showing relations between character code points and their encoded byte sequences of a given encoding.
2022-10-01, 182🔥, 0💬

"jrunscript -f" - Run JavaScript in Batch Mode
This section provides a tutorial example on how to use 'jrunscript -f ...' to run JavaScript code in batch mode.
2022-10-01, 182🔥, 0💬

Logical (Boolean) Data Type
This section describes value range and storage space size of logical data type: boolean.
2022-10-01, 182🔥, 0💬

Nested "if-then-else" Statements
This section describes nested 'if-then-else' statements, where an 'if-then-else' statement contains another 'if-then-else' statement.
2022-10-01, 182🔥, 0💬

"switch" Statements
This section describes 'switch' statement, which is a decision-making statement that executes a portion of the contained statement block by passing control to a sub-statement based on label matching.
2022-10-01, 182🔥, 0💬

Enhanced "for" Statements
This section describes enhanced 'for' statement, which is a looping statement that executes the contained statement repeatedly for each element in a given list.
2022-10-01, 182🔥, 0💬

JcaKeyFactoryTest.java - Key Factory Test Program
This section provides a tutorial example on how to write a sample program to read encoded key files into key spec objects and convert them back into key objects.
2022-10-01, 181🔥, 0💬

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