<< < 1 2 3 4 5 6 7 8 9 10 11 > >>   ∑:486  Sort:Date

javap - Java Disassembler Command and Options
This section describes what are the commonly used command line options for the Java bytecode class disassembler - 'javap' tool.
2022-10-01, 576🔥, 0💬

"jar --module-version" - Updating Module Version in JAR
This section provides a tutorial example on how to use 'jar --update --module-version' to update the version number of the Java module stored in a module JAR file.
2022-10-01, 568🔥, 0💬

Search Operation Performance of Different Collection Classes
This section provides a tutorial example on how to do performance comparison on search operations on different collection classes implemented in JDK 1.4.1. HashSet and LinkedHashSet have the best performance on search operations.
2022-10-01, 554🔥, 0💬

ReverseEchoServer.java - A Multi-Connection Socket Server
This section provides a tutorial example on how to write a network application, ReverseEchoServer.java, that creates a server socket and listens for multiple remote socket connection requests. It creates a new execution thread each time, for each new connection.
2022-10-01, 550🔥, 0💬

MBean Browser on jmc JMX Console
This section provides a tutorial example on how to view details of live objects related to the JVM using the MBean Browser on jmc JMX Console.
2022-10-01, 543🔥, 0💬

SimpleStringBuffer - My Implementation of String Buffer
This section provides a tutorial example on how to implement a simple string buffer class similar to the StringBuffer class included in the java.lang package.
2022-05-20, 536🔥, 2💬

"keytool -keyclone" - Cloning Certificates with New Identities
This section provides a tutorial example on how to use the 'keytool -keyclone' command to clone a certificate with new identity. The cloned certificates with share the same keys with the original certificate.
2022-10-01, 520🔥, 0💬

"jdeps jar_file" - Dependencies of JAR File
This section provides a tutorial example on how to use 'jdeps' command to show package level dependencies of a given JAR file.
2022-10-01, 518🔥, 0💬

Binding Sockets to Specific Ports
This section describes how to bind a socket to a specific port. Binding multiple client sockets to the same port is not allowed.
2022-10-01, 512🔥, 0💬

"byte" Data Type and Implicit Casting
This section provides a tutorial example on how 'byte' variables can be assigned with 'byte' values with implicit and explicit casting from other compatible types of values.
2022-10-01, 509🔥, 0💬

META-INF/MANIFEST.MF - JAR Manifest File
This section describes the JAR manifest file, META-INF/MANIFEST.MF, which contains information about the JAR file and its contents.
2022-10-01, 505🔥, 0💬

SSL Socket Communication Testing Programs
This chapter provides tutorial notes and example codes on the SSL socket communication. Topics include SSL socket communication test requirements and programs; using trusted key store to fix self-signed certificates issue; using debug option to see SSL communication handshake details.
2018-08-01, 491🔥, 7💬

💬 2017-11-27 Herong: Sandeep, not sure. It uses TCP protocol, lower than HTTP post. But you can try it.

💬 2017-11-22 Sandeep: Can this also read post request from cleint

💬 2017-03-02 Herong: hemanth, you can follow SSL Client Authentication tutorials to see how to enable client authentication.

💬 2017-03-01 hemanth: How do i enable client authentication. I know that i have to set server to need client auth which i did but what about the clien...

💬 2016-06-10 Herong: Algérian, did you find what you were looking for here?

(More comments ...)

java - Program Launching Command and Options
This section describes the Java launching tool 'java' and its commonly used command options.
2022-10-01, 488🔥, 0💬

java.util.PropertyResourceBundle - Resource Bundles as Properties Files
This section provides a tutorial example on how to create resource bundles (localization key names with their localized text messages) as properties file for the java.util.PropertyResourceBund leconcrete class.
2016-11-25, 486🔥, 1💬

💬 2016-11-25 Cos: If you need a tool to translate Java .properties file, I recommend you check out the app localization platform https://poeditor....

jmap - Generating Heap Dump File
This section provides a tutorial example on how to generate a heap dump file with the 'jmap -dump:file=name' command. A heap dump file contains all heap objects of JVM process.
2022-10-01, 482🔥, 0💬

jimage - JIMAGE File Tool Command
This section describes what is 'jimage' (Java JIMAGE Tool) - is a command line tool to view and extract JIMAGE files.
2022-10-01, 482🔥, 0💬

jmap - JVM Heap Dump Tool
This section describes the JVM heap dump tool, 'jmap', command and its options. Windows version of 'jmap' can print heap histogram and generate heap dump.
2022-10-01, 480🔥, 0💬

What Is JAB (Java Access Bridge)
This section describes what is JAB (Java Access Bridge) - a technology that exposes the Java Accessibility API to Microsoft Windows environment. JDK comes with 3 JAB tools: jabswitch, jaccesswalker, and jaccessinspector.
2022-10-01, 479🔥, 0💬

java.time.Period - Periods in Days and Months
This section describes the java.time.Period class that represents a calendar period measured in years, months, and/or days.
2022-10-01, 476🔥, 0💬

jstack - Stack Tracer to Generate Thread Dump
This section provides a tutorial example on how to use the 'jstack' tool to generate a thread dump (print all running threads and their stack traces).
2017-01-23, 475🔥, 1💬

Single-Element Annotation Invocation
This section provides a tutorial example on how to use the shorthand format for a single annotation element named as 'value' in annotation invocation statements.
2022-10-01, 472🔥, 0💬

Launching jmc (Java Mission Control)
This section provides a tutorial example on how to launch 'jmc' (Java Mission Control) and manage its JVM browser, details and Web browser panels.
2022-10-01, 468🔥, 0💬

jhat - Starting Web Server on a Heap Dump File
This section provides a tutorial example on how to start 'jhat' as a Web server on a Java heap dump file allowing you to browse Java heap objects.
2022-10-01, 462🔥, 0💬

"keytool -genkeypair" - Generating Keys and Self-Signed Certificates
This section provides a tutorial example on how to use the 'keytool -genkeypair' command to generate a new pair of keys and self-signed certificate in a new 'keystore' file.
2022-10-01, 460🔥, 0💬

<< < 1 2 3 4 5 6 7 8 9 10 11 > >>   ∑:486  Sort:Date