<< < 361 362 363 364 365 366 367 368 369 370 371 > >>   ∑:9107  Sort:Rank

Calling createStatement() and executeQuery
This section describes how to run a SELECT query statement with createStatement() and executeQuery().
2017-02-08, ∼252🔥, 2💬

"jar -C" - Changing Input Directory
This section provides a tutorial example on how to 'jar --create -C ...' to change input directory when creating JAR files.
2017-02-04, ∼1609🔥, 3💬

💬 2017-02-04 Herong: Chris, Thanks for sharing the information.

💬 2017-02-03 Chris: For unix, on the last command, ".;" changes to ".:".

PDF Printing Version
Information on how to obtain the PDF version of this book for printing.
2017-01-31, ∼1046🔥, 3💬

💬 2017-01-31 Linda Collins: Need to get cracking.

💬 2016-02-03 andi: good doc

Viewing Certificate Path
This section provides a tutorial example on how to view certificate path when visiting an 'https' Web site in IE. The top certificate in a certificate path is the CA certificate, which is trusted automatically.
2017-01-31, ∼1470🔥, 1💬

💬 2017-01-31 kishor: -----BEGIN CERTIFICATE----- MIIDqjCCApICCQC6MOh9nHUvUjANBgkqhkiG 9w0BAQUFADCBljELMAkGA1UEBhMCVVMxETAPBgNVBAgTCENvbG9yYWRvMRMwEQY. ..

Web Server Log Files and Analysis Tool - "Analog"
This chapter provides an introduction of 'Analog' - Web log file analysis tool. Topics include IIS and Apache log file samples, installing and configuring 'Analog', setting up 'Analog' to process Apache log files.
2017-01-29, ∼861🔥, 1💬

Using MD5 Message Digest in Java
This section provides a tutorial example on how to use MD5 message digest algorithm in Java. The JDK JCE package offers the MD5 algorithm through a generic message digest class, javax.security.MessageDigest.
2017-01-27, ∼754🔥, 2💬

Entering Non ASCII Characters in JSP Pages
This section describes rules on how non-ASCII characters can be entered in JSP pages and displayed correctly on Web browsers.
2017-01-25, ∼1192🔥, 3💬

💬 2017-01-25 abc: ทดสอบภาษาไทย

💬 2016-06-19 Herong: That was a good test. ☺

💬 2016-06-08 dfgd: &lt;script>alert(document.cookie )&lt;/script>

Windows 7: Firewall Alert on Blocked Connection
This section provides a tutorial example on how Windows Firewall alerts you when it detects a blocked connection on Windows 7 system.
2017-01-24, ∼1248🔥, 2💬

💬 2017-01-24 tenani: thanx for showing scurity alert ans explaining step by step. very clear and useful

💬 2016-09-29 Manjit Chana: Thanks for exact information to enable me deal with above alert issue.

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

Operations on "byte" Data Type Values
This section provides a tutorial example on how 'byte' values are casted to 'int' values when they are involved in arithmetic, comparison and bitwise operations.
2017-01-21, ∼6496🔥, 2💬

💬 2017-01-21 Herong: Anonymous, Good question. But what do you expect an operation of byte+byte will do?

💬 2017-01-19 Anonymous: Reason for why byte doesn't holds good the + operator directly.

BankingThread.java - Synchronization Sample Program
This section provides a tutorial example on how to solve the banking synchronization issue with Java synchronized methods.
2017-01-21, ≈10🔥, 5💬

💬 2017-01-21 Herong: Abhishek, I think this is the simplest example to demonstrate multi-threading and synchronization.

💬 2017-01-18 Abhishek: This is too complex for a beginner. Please write a simpler one.

💬 2016-09-17 Herong: dot.g, really? please give details.

💬 2016-09-15 dot.g: worst kind of programming

💬 2015-07-24 tintin: hi

Android Command Line Shell
This chapter provides tutorial notes on Android command line shell. Topics include introduction of Bourne Shell; Unix/Linux command line programs; Android command line tools; running Java application on Dalvik VM.
2017-01-20, ∼1577🔥, 1💬

Discontinued: GetISD - Get ISD Phone Code of a Given Country
This chapter provides a quick introduction of the free Web service, GetISD, returning the phone code of a given country. Topics include usage description of GetISD; request message sample; response message sample.
2017-01-17, ∼352🔥, 1💬

SOAP Java Implementations
This chapter provides notes and tutorials on SOAP Java Implementations: SAAJ, Axis and Apache WebService.
2017-01-16, ∼499🔥, 1💬

Reference Citations - HerongYang.com
This is a collection of reference citations to Herong's tutorial books on the Internet. Updated in 2026 (Version v2.96) with citations added.
2017-01-14, ∼1671🔥, 1💬

💬 2017-01-14 Rajia: Nice job!

Running PerlApp to Convert *.pl to *.exe
This section provides a tutorial example of running PerlApp from ActiveStat to convert a sample Perl script, DirGrep.pl, to Windows executable binary, DirGrep.exe.
2017-01-14, ∼3195🔥, 2💬

💬 2017-01-14 Herong: Monique, Yes, you run the commands listed in the tutorial at the command prompt.

💬 2017-01-12 Monique: Where do you actually run this???? from command prompt?

Accessing System Environment Variables
This section provides a tutorial example on how to access environment variables defined in the operating system using the System.getenv() method.
2017-01-14, ∼1074🔥, 2💬

💬 2017-01-14 Herong: Martin, The code has been corrected now. Thanks.

💬 2017-01-09 Martin Manek: Hi, line "java.util.Map envs = System.getenv();" is two times in code and "out is missing. PrintStream out = System.out;

What is CFB (Cipher FeedBack) Operation Mode?
This section describes what is CFB (Cipher FeedBack) Operation Mode - each plaintext block is XORed with the encrypted version of the ciphertext of the previous block to be the ciphertext block.
2017-01-13, ∼3054🔥, 3💬

💬 2016-12-07 fakhrulislam: i want a copy of this book !

💬 2015-11-06 poonam: a perfect explanation

What Is Western Zodiac
This section describes what is Western zodiac.
2017-01-12, ∼1418🔥, 1💬

💬 2017-01-12 Jimmy Neutron: not the best page

addHeader() - Setting SOAPAction Header Line
This section provides a tutorial example on how to use the MimeHeaders class and the addHeader() method to add the SOAPAction header line for the final HTTP request.
2017-01-10, ≈12🔥, 2💬

💬 2017-01-10 hello: world

Viewing LG Android USB Device in Control Panel
This section provides a tutorial example on how to view the LG Android USB device in Windows Control Panel and see its detailed properties.
2017-01-09, ∼837🔥, 1💬

💬 2017-01-09 beto: congratulations

What Is WSDL Document
This section describes WSDL Documents, which are XML files that uses WSDL (Web Services Definition Language) to define Web services.
2017-01-08, ∼764🔥, 2💬

💬 2017-01-08 Herong: Bessie, the missing picture is added now. Thanks.

💬 2017-01-07 Bessie: On this page: http://www.herongyang.com/Free-Web-S ervice/SOAP-What-Is-WSDL-Document.ht mlthe WSDL-2-0-Document-Structure.jpg fil...

Year 1977 Chinese Calendar - Year of the Snake
2017-01-05, ∼1198🔥, 2💬

💬 2017-01-05 Qays: Hi , I am born on 8th may 1977 . Snake year . After a long way of full experience of gain and loss now I am heading to the old b...

💬 2016-04-06 Michael: Life is good.

RsaKeyGenerator.java for RSA Key Generation
This section describes the initial draft of a RSA public key and private key generation implementation using the java.math.BigInteger class.
2017-01-05, ∼4451🔥, 2💬

💬 2017-01-05 Herong: Alex, you are right. q should be selected independently from p. I will make a change in the next revision.

💬 2016-12-28 Alex T.: Using nextProbablePrime() to compute q appears somewhat risky to me: An attacker with the knowledge of N=p*q could simply comput...

<< < 361 362 363 364 365 366 367 368 369 370 371 > >>   ∑:9107  Sort:Rank