<< < 12 13 14 15 16 17 18 19 20 21 > >>   ∑:486  Sort:Rank

Character Set Encoding Comparison
This section provides a tutorial example on how to compare some commonly used character set encodings in number of characters, byte sequence sizes and ASCII compatibilities.
2022-10-01, 162🔥, 0💬

DatagraClient.java - A Datagram Client Application
This section provides a tutorial example on how to write a network application, DatagraClient.java, that creates a client socket, sends datagram packet to a datagram server.
2022-10-01, 161🔥, 0💬

DOMNewDoc.java - Building a New DOM Document
This section provides a tutorial example on how to write a program to create a new DOM document object with DOM classes and methods like: DocumentBuilder.newDocument(), Document.createElement(), Document.createTextNode(), and Node.appendChild().
2022-10-01, 160🔥, 0💬

Interface Type Variables
This section describes how to use an interface type variable to store references to objects of classes that implemented this interface.
2022-10-01, 160🔥, 0💬

Collection Implementations in JDK
This section describes implementation classes of collections with various data structures in JDK 1.4.1: TreeSet, HashSet, LinkedHashSet, ArrayList, LinkedList, Vector, Stack, TreeMap, HashMap, IdentityHashMap, WeakHashMap, Hashtable.
2022-10-01, 159🔥, 0💬

Character Counter Program for Any Given Encoding
This section provides a tutorial example on how to write a simple program to count valid characters in a give encoding character set encoding.
2022-10-01, 159🔥, 0💬

Key Pair Sample Program - JcaKeyPair.java
This section provides a tutorial example on how to write simple program to generate a pair of private key and public key for the RSA or DSA algorithm.
2022-10-01, 159🔥, 0💬

DiffieHellman Private Key and Public Key Pair Sample
This section provides a tutorial example on how to run JcaKeyPair.java to generate a DiffieHellman private key and public key pair sample. Keys are stored PKCS#8 and X.509 encoding formats.
2022-10-01, 159🔥, 0💬

Connecting to HttpsHello.java with IE
This section provides a tutorial example on how to test my HTTPS server program, HttpsHello.java with the IE (Internet Explorer) browser. IE requires the HTTPS certificate's owner name matching the server host name.
2022-10-01, 159🔥, 0💬

StringBuffer Class Properties and Methods
This section describes the StringBuffer class, it properties and methods.
2022-10-01, 159🔥, 0💬

Reference Types Supported in Java
This section provides a list of reference types supported in Java: class type, interface type, type variable and null.
2022-10-01, 158🔥, 0💬

Archived: Downloading and Installing JDK 10
This section describes how to download and install JDK 10 on a Windows system.
2022-10-01, 158🔥, 0💬

What Is Character Encoding?
This section provides introductions on what is a character encoding - A map scheme between code points of a code character set and sequences of bytes.
2022-10-01, 157🔥, 0💬

Character Set Encoding Maps - US-ASCII and ISO-8859-1/Latin 1
This section provides a tutorial example of analyzing and printing character set encoding maps for 2 encodings: US-ASCII and ISO-8859-1/Latin 1.
2022-10-01, 154🔥, 0💬

Private and Public Keys and Related Interfaces
This section describes private and public key pairs used in RSA and DSA encryption algorithms. JDK supports private and public keys with the java.security.Key interface.
2022-10-01, 154🔥, 0💬

Importing Classes from Unnamed to Named Packages - JDK 1.4.1
This section provides a tutorial example on how to import classes defined in an unnamed package to a named package with JDK 1.4.1 or higher. A wrapper class is needed to integrate the class in an unnamed package into a named package with JDK 1.3.1 first.
2022-10-01, 152🔥, 0💬

Two Classes in Unnamed Packages - Hello.java and CallingHello.java
This section provides a tutorial example on how to place two Java classes in an unnamed package and how to call one class from another class in the unnamed package.
2022-10-01, 149🔥, 0💬

PKCS#8/X.509 Private/Public Encoding Standards
This chapter provides tutorial notes and example codes on PKCS#8 and X.509 key encoding standards. Topics include PKCS#8 standard for private key encoding; X.509 standard for public key encoding; PKCS8EncodedKeySpec and X509EncodedKeySpec classes to decode encoded keys; JcaKeyFactoryTest.java test p...
2022-09-26, 223🔥, 3💬

💬 2022-09-26 مسعود منجیزی: hi pls send me that software thanks

💬 2022-09-26 مسعود منجیزی: با سلام لظفا این برنامه را برای من ارسال کنید متشکرم

💬 2022-09-26 masoud monjezi: hi i need that software ols send me ser thanks

Setting UTF-8 Encoding in PrintStream
This section provides a tutorial example on how to set UTF-8 encoding an output PrintStream to correctly print non-ASCII characters.
2022-08-22, 1913🔥, 1💬

"jshell&gt; /save" - Saving Code Snippet
This section provides a tutorial example on how to enter a long code snippet in 'jshell', save it to a file, and open it to run it later.
2022-08-11, 1035🔥, 2💬

💬 2022-08-11 Saravanan S: for (int index = 0; index < 10; index++) { System.out.println(index); }

💬 2021-09-18 Adam Levine: Damn this was a helpful tutorial

About This Book
This section provides some detailed information about this book - __title__.
2022-07-23, 359🔥, 1💬

💬 2022-07-23 Richard O. Jarrett: public class VeCal {    static int a = 9;    static int b = 3;    static void  lt(int a, int b) {       System.out.printl...

Java Tutorials - Herong's Tutorial Examples
This tutorial book is a collection of notes and sample codes written by the author while he was learning Java himself. Topics covered in the book include: Java language basics; execution environment; generic classes and parameterized type; generic methods and type argument inferences; enum types and...
2022-07-22, 9564🔥, 9💬

💬 2022-07-22 Chris: This is an easy to read book on the Java language. I recommend this book to all beginners.

💬 2016-03-05 SOUMO BISWAS: YES

💬 2016-02-26 Herong: Maurice, Thanks for the positive feedback!

💬 2016-02-25 Maurice: It is a great JVM book

💬 2015-12-05 Herong: Yogesh, we need better examples than what you have suggested...

(More comments ...)

"keytool -export/import" - Exporting and Importing Certificates
This section provides a tutorial example on how to use the 'keytool -export' command to export certificates out of a 'keystore' file. The 'keytool -import' command can be used to import certificates into a 'keystore' file.
2022-07-08, 35776🔥, 2💬

💬 2015-08-14 Jay: This is exactly what i was looking for... thank you...

Creating Class Type Objects
This section describes how class type objects can be created using the 'new' operator and special methods.
2022-06-24, 216🔥, 1💬

💬 2022-06-24 waryam: ok

<< < 12 13 14 15 16 17 18 19 20 21 > >>   ∑:486  Sort:Rank