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

Data Types Supported in Java
This section provides a list of data types supported in Java: 8 primitive data types and 5 reference data types.
2022-10-01, ∼254🔥, 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, ∼254🔥, 0💬

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, ∼254🔥, 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, ∼253🔥, 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, ∼253🔥, 0💬

Garbage Collection and the gc() Method
This chapter describes the garbage collection supported provided by Java. Topics include unused objects, the JVM automatic garbage collection process, the garbage collection method gc() on the default Runtime object.
2022-10-01, ∼253🔥, 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, ∼252🔥, 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, ∼252🔥, 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, ∼251🔥, 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, ∼250🔥, 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, ∼249🔥, 0💬

java.security.cert.Certificate - The Certificate Class
This section describes the certificate class: java.security.cert.Certificate ,which represents a signed certificate of a public key.
2022-10-01, ∼248🔥, 0💬

Establishing a Socket Communication Link
This section describes how to establish a socket communication link. A server application runs a socket in listen mode and a client application connects a client socket to the server socket.
2022-10-01, ∼247🔥, 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, ∼247🔥, 0💬

Enum Constant Inherited Methods
This section provides a tutorial on how to invoke static and instance method inherited from the generic base class of java.lang.Enum.
2022-10-01, ∼247🔥, 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, ∼245🔥, 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, ∼245🔥, 0💬

jshell - Entering Expressions and Statements
This section provides a tutorial example on how to start 'jshell' and enter expressions and statements.
2022-10-01, ∼244🔥, 0💬

DOMToXML.java - Converting DOM Documents to XML Files
This section provides a tutorial example on how to write a program to convert a DOM document object into an XML file using the default XML transformer, org.apache.xalan.transformer, provided in the JDK.
2022-10-01, ∼243🔥, 0💬

Writing My First Java Program
This section provides a tutorial example on how to write, compile, and execute the first Java program with JDK 1.8.0.
2022-10-01, ∼243🔥, 0💬

Bitwise Operations on "byte" Values - Example Program
This section provides a tutorial example on how 4 types of bitwise operations, 'And', 'Or', 'Exclusive Or', and 'Complement' works on 'int' values.
2022-10-01, ∼243🔥, 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, ∼243🔥, 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, ∼242🔥, 0💬

Generate API Document for Java Package
This section provides a tutorial example of how to add javadoc-style comments in Java classes in a packag, add package.html, and generate the API document for the package.
2022-10-01, ∼242🔥, 0💬

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