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

Archived: JDK 1.3 Bug - Memory Leak With Unstarted Threads
This section describes a reported bug for JDK 1.3 that unstarted thread objects cause memory leak.
2022-10-01, 185🔥, 0💬

getAnnotations() Method - Annotation APIs
This section provides a tutorial example on how to use the getAnnotations() method and other annotation APIs to obtain annotation information at runtime.
2022-10-01, 185🔥, 0💬

The "Thread" Class - Creating Thread Objects With Thread Sub Classes
This section provides a tutorial example on how to create new threads with your own classes extended from the 'Thread' class. You need to override the run() method in your own classes.
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, 183🔥, 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, 183🔥, 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, 183🔥, 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, 182🔥, 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, 182🔥, 0💬

XSL (Extensible Stylesheet Language)
This chapter provides tutorial notes and example codes on XSL (Extensible Stylesheet Language). Topics include default XSL implementation classes in JDK; writing an XML transformer program using XSL (Extensible Stylesheet Language).
2022-10-01, 182🔥, 0💬

Downloading and Installing JDK on Mac
This section describes how to download and install JDK 13 on a Mac computer
2022-10-01, 182🔥, 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, 182🔥, 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, 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💬

"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, 182🔥, 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, 181🔥, 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, 181🔥, 0💬

DOMBrowser.java - Browsing DOM Tree Structure
This section provides a tutorial example on how to write a DOM object browser, DOMBrowser.java, to browse through the DOM object tree structure and print the content at each tree node.
2022-10-01, 181🔥, 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, 181🔥, 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, 180🔥, 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, 179🔥, 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, 179🔥, 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, 179🔥, 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, 179🔥, 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, 178🔥, 0💬

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