<< < 1 2 3 4 5 6 7 8 > >>   ∑:488  Sort:Date

"jar --list" - Listing Files in JAR File
This section provides a tutorial example on how to list files stored in a JAR file with the 'jar --list' command.
2022-10-01, ∼2699🔥, 0💬

Full Version in PDF/EPUB
Information on how to obtain the full version of this book in PDF, EPUB, or other format.
2017-09-29, ∼2623🔥, 5💬

💬 2017-09-29 gloax29: merci

💬 2015-11-20 sameer: good going

💬 2015-09-02 Herong: Dharshan, you can follow tutorials presented at JSSE - Java Implementation of SSL and TLS .

💬 2015-09-01 Dharshan: I want to learn JSSE

Archived: Downloading and Installing J2SE 1.5.0 on Windows
This section provides tutorial example on how to download and install J2SE (JDK - Java Development Kit) 1.5.0.
2023-11-13, ∼2582🔥, 1💬

💬 2023-11-13 Hi: Hi

main() Method - Java Execution Entry Point
This section describes the Java program entry point, the main() method of the starting class. Command line arguments are passed as an string array parameter to the main() method.
2020-01-21, ∼2502🔥, 1💬

💬 2020-01-21 samso: Thanks for this wonderful blog that you have designed in this page. Very informative and effective article. Ver inspired article...

JIMAGE - Java Image File Format
This section describes the Java image, JIMAGE, a special file format used to store class and resource files of multiple Java modules to support custom JRE.
2023-03-18, ∼2478🔥, 2💬

💬 2023-03-18 -: nice

Converting uXXXX Sequences Back with "-reverse" Option
This section provides a tutorial example on how to \uXXXX Unicode code sequences back to a native encoding like UTF-8 with the 'native2ascii -encoding utf-8 -reverse' command.
2022-10-01, ∼2460🔥, 0💬

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, ∼2376🔥, 1💬

Supertype and Subtype
This section describes the supertype-subtype relationships: a supertype corresponds a class or interface that is extended or implemented directly or indirectly by the class or interface of the subtype.
2022-10-01, ∼2353🔥, 0💬

"native2ascii -encoding" - UTF-8 to uXXXX Conversion
This section provides a tutorial example on how to convert UTF-8 character strings to \uXXXX Unicode code sequences with the 'native2ascii -encoding' command.
2022-10-01, ∼2205🔥, 4💬

💬 2022-10-01 DEMO: DEMO

💬 2020-05-08 دد: سلام

💬 2019-03-25 gg: É=-~-~[],ó=-~É,Ë=É<<É,þ=Ë+~[]; Ì=(ó-ó)[Û=(''+{})[É+ó]+(''+{})[ó-É]+ ([].ó+'')[ó-É]+(!!''+'')[ó]+({}+'')[ ó+ó]+(!''...

💬 2019-02-18 What: &lt;script>alert("hii")&lt;/ script>

Java Thread Deadlock Demo Program
This section provides a tutorial example of simple deadlock demo program, SimpleDeadLock.java, with 2 threads waiting for each other.
2016-02-20, ∼2091🔥, 2💬

💬 2015-11-27 Herong: Rahul, I think your dump file is a correct thread dump. It provides you a list of threads in a text format. You can use any text...

💬 2015-11-26 Rahul: Hi, Thanks for nice article. when we use jstack or kill -QUIT / kill -3 to get thread dump , we always get the dump file which s...

Installing Latest JDK on Windows
This section provides a tutorial example on how to download and install the latest version JDK, which includes some nice Java tools, on a Windows system.
2016-02-26, ∼1978🔥, 2💬

💬 2015-07-29 Herong: Sophie, I am so glad that my tutorial is helpful to you.

💬 2015-07-29 Sophie: Thank you. I have successfully installed Java jdk 1.8 using the instructions on this web page.

jar - The JAR File Tool
This chapter provides notes and tutorials on JAR file tool, 'jar'. Topics include Java Archive (JAR) file forma, 'jar' command options, creating JAR files, managing JAR files with WinZIP, using manifest file, creating executable JAR files.
2016-02-27, ∼1924🔥, 3💬

💬 2015-06-06 svdude: Love your clear explanation of creating and using JARs. Thank you!

💬 2010-12-25 Herong: Eka, No, you can not use client's public key to sign a .jar file. Digital signature needs to be generated using your own private...

💬 2010-12-22 Eka: If i have a client's public key... can i sign a .jar using his public key to later be used only by him?

Initializing SSLContext with PKCS12 File
This section provides a tutorial example on how to write a simple program to test the java.net.ssl.SSLContext class with a PKCS12 keystore file.
2022-10-01, ∼1913🔥, 0💬

"java -classpath" - Specifying Class Path
This section provides a tutorial example on how to use the '-classpath' option to specify the class path for the 'java' tool to load any classes required during the execution.
2022-10-01, ∼1843🔥, 0💬

"javac --module" - Compiling Entire Module
This section provides a tutorial example on how to use 'javac --module' command to compile all Java source code in an entire module.
2022-10-01, ∼1821🔥, 0💬

Using SO_LINGER Socket Option
A tutorial example is provided to show how to use the SO_LINGER socket option to prevent the server closing the socket too soon after writing the response to the socket.
2017-02-16, ∼1807🔥, 2💬

💬 2017-02-16 Herong: Gaurav, you can to follow "keytool -genkey" - Generating Keys and Self-Signed Certificates tutorial to generate herong.jks.

💬 2017-02-15 Gaurav Kumar: Where can i get this file herong.jks?

java.time.Instant - get(INSTANT_SECONDS) Error
This section provides a tutorial example on how to use getLong() to retrieve INSTANT_SECONDS value. Using get() will result an exception.
2016-08-03, ∼1801🔥, 2💬

💬 2016-08-03 Herong: G, Thanks for pointing out the root cause of the issue. I will correct it in the next update.

💬 2016-08-02 G: the valid values range is outside of int, use getLong() instead of get(),

"jar --main-class" - Making JAR File Executable
This section provides a tutorial example on how to use 'jar --main-class ...' command option to specify the application main class to make a JAR file executable.
2022-10-01, ∼1780🔥, 0💬

jstat - JVM Statistics Monitoring Tool
This chapter provides tutorial notes on JVM statistics monitoring tools. Topics include listing JVM processes with 'jps', the JVM remote monitoring server - 'jstatd', Java security policy file, connecting 'jps' and 'jstat' to a remote machine, RMI protocol and URL, getting garbage collection statist...
2017-08-10, ∼1774🔥, 1💬

💬 2017-08-10 abdel: genial very good !!!

💬 2017-04-01 Herong: Asdaq, Thanks for sharing your comment.

💬 2017-03-31 Asdaq: For IBM SDK WebSphere Application Server this tool is not available.

💬 2015-12-13 Herong: Tim, I thought that every Linux system comes with JDK preinstalled. Not true?

💬 2015-12-12 tim: @majumder.soumya@gmail.com seems like you need to install jdk

(More comments ...)

Creating Module JAR File
This section provides a tutorial example on how to use 'jar --create' command to create a module JAR file to store all class files of a Java module.
2023-04-24, ∼1744🔥, 2💬

💬 2023-04-24 Jeff: Append my comments. It actually worked. Didn't realize C in -C is a capital letter and there's a dot in the end.

💬 2023-04-24 Jeff: when I tried --describe-module option, command prompt said no module descriptor found. Derived automatic module. Also, the --lis...

SslReverseEchoer.java - SSL Server Socket Example
This section provides a tutorial example on how to write a sample program to create a SSL server socket to listen for incoming SSL socket connection requests from client machines.
2022-05-06, ∼1706🔥, 3💬

jmod - The JMOD File Tool
This chapter provides tutorial notes on 'jmod', the JMOD File Tool. Topics include introduction of JMOD file format; 'jmod' command options; creating JMOD file with 'jmod'; viewing and extracting JMOD file with 'jmod'; using JMOD file in 'javac' and 'jlink' commands.
2022-10-01, ∼1687🔥, 0💬

"jar --extract" - Extracting Files from JAR File
This section provides a tutorial example on how to extract files out of a JAR file with the 'jar --extract' command.
2022-10-01, ∼1585🔥, 0💬

Full Version in PDF/EPUB
Information on how to obtain the full version of this book in PDF, EPUB, or other format.
2016-07-09, ∼1583🔥, 3💬

💬 2016-07-09 vetal: good

💬 2015-12-01 Michael Collins: Thanks

<< < 1 2 3 4 5 6 7 8 > >>   ∑:488  Sort:Date