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

SslSocketClient.java - SSL Client Socket Example
This section provides a tutorial example on how to write a sample program to create a SSL client socket to connect to a SSL server socket. The connection will fail if the server's certificate is self-signed.
2016-06-10, ≈15🔥, 3💬

Loading JDBC Driver for MySQL Server
This section describes how to load the MySQL JDBC driver class - mysql-connector-java-xxx-bin.j ar.
2024-08-29, ≈15🔥, 1💬

💬 2024-08-29 bk: bull-kit

💬 2019-04-28 M1001101: Meaningful comments. Thanks!

💬 2018-09-20 raj: hatt budbak aisa kuch nahin hota bakwas hai ye program

💬 2017-09-16 vivek sharma: good

💬 2017-01-14 Herong: Thanks for the nice comment! ☺

(More comments ...)

Using WSDL2Java to Generate Web Service Stub Classes
This chapter provides tutorial notes and example codes on WSDL2Java. Topics include using the WSDL2Java tool included in Axis2; generating client side stub classes; using stub and data type classes; testing stub classes with XML document and RPC method based Web services.
2022-07-25, ≈15🔥, 10💬

💬 2018-04-22 test name: thanks

💬 2017-01-20 Stephen: Hi , thanks for this tutorial

💬 2016-02-24 Herong: NfeDownloadNFStub, do you need any help on your WSDL document?

💬 2016-02-23 NfeDownloadNFStub: &lt;?xml version="1.0" encoding="UTF-8"?> &lt;wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLS chema"xmlns:soap12="...

💬 2015-12-18 prem: thanks

CipherDES.java - A Java Implementation of DES
This section provides a tutorial Java program, CipherDES.java - A Java Implementation of DES encryption and decryption algorithm.
2017-02-16, ≈15🔥, 9💬

💬 2017-02-16 Herong: Andro, I think implementation of DES using String methods will be slower than using byte and int operations.

💬 2017-02-12 Andro: Good done. I have created my own DES with benefits of string methods in Java. My DES receives binary string and key, then cipher...

💬 2016-03-03 Dede: Helps a lot, currently developping a mobile application that has to do with encryption. Thanks

💬 2015-10-16 Herong: Skip, Good luck on your study!

💬 2015-10-15 Skip: I'm taking a graduate course in cryptography and this was extremely helpful for going from DES visual to DES in java. I really a...

(More comments ...)

JDBC-ODBC - Connecting to a DSN
This section describes how to connect to a DSN (Data Source Name) with JDBC-ODBC Bridge.
2022-10-01, ≈15🔥, 0💬

Feedback on the Comment Module
The comment module on this Web site was extended from the original guestbook tool. If you have any feedback, please share it here.
2022-05-08, ≈14🔥, 27💬

💬 2015-09-14 Herong: The original guestbook has been retired as of Sep. 12, 2015.

💬 2012-04-17 M REAVES: NICE GUESTBOOK.

💬 2009-03-19 Bharat: Hi it really good guestbook i have seen. good job.

💬 2008-10-25 Biphendpoenda: Another test

💬 2008-07-02 Brin: Hello, nice site :)

(More comments ...)

Playing Movie with FFmpeg "ffplay" Command
This section provides a tutorial example on how to use the FFmpeg 'ffplay' command to play movie file stored in MPEG4 (*.mp4) format.
2022-07-13, ≈14🔥, 2💬

💬 2022-07-13 Your Name: meaningful comment

💬 2017-07-17 Nishadi: thanks. it is works

HttpsHello.java - HTTPS Server Test Program
This section provides a tutorial example on how to write a HTTPS server test program, HttpsHello.java. It writes back a simple Web page using the HTTPS protocol.
2020-01-28, ≈14🔥, 25💬

💬 2020-01-28 Herong: Bing, see Generating Private Keys tutorial on how to creat JKS files.

💬 2020-01-24 BingLi224: how to create .jks certificate file correctly?

💬 2017-09-20 Herong: Sandeep, you need to create a server certificate in a .jks file first.

💬 2017-09-08 sandeep kumar shukla: I am getting following error while I run the servier program. java.io.FileNotFoundException: herong.jks (The system cannot find ...

💬 2016-09-21 Test: Hello. How are you?

(More comments ...)

Double Ninth Festival - 9th Day of 9th Lunar Month
When is the Chinese Double Ninth Festival? How is it celebrated? What are the traditions? The ninth day of the ninth month in the Chinese lunar calendar is the Chinese Double Ninth Festival (重阳节). According to the I Ching, nine is a yang number; the ninth day of the ninth lunar month (or double nin...
2021-05-26, ≈14🔥, 0💬

Live Examples of Web Services
A collection of live Web service examples for WSDL 1.1, WSDL 2.0, SOAP 1.1, SOAP 1.2, with XML document and RPC message styles: "Hello" Web Service "Hello_REST" - REST Web Service "UnitConversion_REST" - REST Web Service "Registration" Web Service - WSDL 1.1 and SOAP 1.2 "Reservation" Web Service - ...
2022-07-08, ≈14🔥, 2💬

Free Chinese Calendars: 2031 - 2040
Where to find Chinese New Year dates for year 2031 to 2040? Where to get free Chinese calendars? Here are the Chinese New Year dates for year 2031 to 2040: Free Chinese Calendars for year 2031 to 2040: Free Chinese Calendar 2031 - Year of the Boar Free Chinese Calendar 2032 - Year of the Rat Free Ch...
2021-11-01, ≈14🔥, 0💬

getBit() - Retrieving a Bit from a Byte Array
This section provides a tutorial example on how to get one bit back from a byte array at a specific bit position - getBit().
2019-11-14, ≈14🔥, 2💬

💬 2016-07-10 bfssd: Meaningful comments

XML Tutorials - Herong's Tutorial Examples
This XML tutorial book is a collection of notes and sample codes written by the author while he was learning XML himself. Topics include introduction to XML, DTD (Document Type Definition), XSD (XML Schema Definition), XPath (XML Path Language), XSL (Extensible Stylesheet Language), XSLT (XSL Transf...
2025-12-23, ≈14🔥, 3💬

💬 2022-07-22 Helen: This is very helpful!

💬 2016-05-07 mehari: this tutorials helps many trainers through out the world, thanks!

💬 2015-07-19 Jay: What about JSON format?

JDBC-ODBC - Inserting Data Rows to MS Access Database
This section describes how to insert new data rows into MS Access database through the JDBC-ODBC driver.
2022-10-01, ≈14🔥, 0💬

Downloading Apache HTTP Server 2.2.25 for Windows
This section describes how to download Apache (HTTP Server) 2.2.25 binary distribution for Windows systems.
2023-05-10, ≈14🔥, 16💬

💬 2023-05-10 kornjvc: Thanks

💬 2020-04-20 Daniel Morris: This service is best service for best people

💬 2018-09-07 lijun: duo xie

💬 2018-03-30 ywb: 体验

💬 2018-02-28 黄先生: 多谢

(More comments ...)

Listing of Trusted Root CA in Google Chrome
This section provides a tutorial example on how to see the list of trusted root CA (PKI Authorities) pre-installed in Google Chrome.
2016-09-16, ≈14🔥, 1💬

💬 2016-09-16 Pooja Shukla: good

"soap:address" - Location of Service
This section describes 'soap:address', a SOAP extension element that specifies an address where Web service is located.
2020-04-21, ≈13🔥, 6💬

💬 2020-04-21 kaviarasu: Thank you

💬 2016-10-03 666: 6666

💬 2016-05-18 Nasir Peraiz: Nice work by your team

XSL-FO Tutorials - Herong's Tutorial Examples
This book is a collection of tutorial notes and sample codes written by the author while he was learning XSL-FO (Extensible Stylesheet Language - Formatting Objects) himself. Topics include: Introduction to XSL, XSL-FO, and Apache FOP; XSL concepts: Area Model, Inline Stacking and Block Stacking; Pa...
2016-06-19, ≈13🔥, 1💬

💬 2016-06-19 Dell: Great book. Thank you!

Where Is TOC Located on a CD
This section provides basic information on physical location of TOC (Table Of Contents) CDs.
2020-01-28, ≈13🔥, 3💬

💬 2020-01-28 Herong: Robert, the last track should be near the outside.

💬 2020-01-19 Robert Honeyman: I'm ripping a CD and getting errors on the last track. Is the last track near the center of the CD or near the outside? Thanks i...

💬 2017-08-17 FÁBIO: gREAT INFORMATIONS! tHANKS

Lantern Festival - 15th Day of 1st Lunar Month
When is the Chinese Lantern Festival? How is it celebrated? What are the traditions? The 15th day of the 1st lunar month is the Chinese Lantern Festival because the first lunar month is called yuan-month and in the ancient times people called night Xiao. The 15th day is the first night to see a full...
2021-08-13, ≈13🔥, 0💬

Free Chinese Calendar 2031 - Year of the Boar
Want to know when is the 2031 Chinese New Year day? Look for free Chinese calendars for 2031? Chinese New Year Date for Year 2031   ⇒ Free Chinese Calendar 2032 - Year of the Rat ⇐ Free Chinese Calendars: 2031 - 2040 ⇑ Free Chinese Calendars: 2031 - 2040 ⇑⇑ Free Chinese Calendars
2021-10-30, ≈13🔥, 0💬

Popular Book List
Popular Books: Android Tutorials Bitcoin Tutorials C# Tutorial Examples Cheminformatics Tutorials Cryptography Tutorials Data Encodings EC Cryptography Email Tutorials Ethereum Tutorials Flash Tutorials Free Web Services GB2312 Character Set HTML Tutorials Java Tutorial Examples Java GC Tutorials Ja...
2025-09-30, ≈13🔥, 0💬

deleteRow() - Deleting Rows through ResultSet Objects
This section describes how to delete rows from target tables through ResultSet objects.
2016-07-13, ≈13🔥, 2💬

💬 2016-07-13 rahul krishna: good work

Chinese Character String with UTF-8 Encoding
This section providing information on handling Chinese character string literals in UTF-8 encoding.
2024-02-28, ≈13🔥, 16💬

💬 2023-11-03 这是一份非常简单的说明书: 这是一份非常简单的说明书

💬 2022-11-21 test: test

💬 2020-04-24 PK: Thanks dude it help me a lot.

💬 2019-05-23 明明: 这是一份非常简单的说明书…

💬 2016-03-10 Herong: Developers are welcome! ☺

(More comments ...)

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