<< < 31 32 33 34 35 36 37 38 39 40 41 > >>   Sort: Rank

List of Demo Programs in jxl.jar 2.6.12
What are demo programs included in jxl.jar 2.6.12? JExcelApi, jxl.jar 2.6.12 comes with a raft of demonstration and test programs contained in the package jxl.demo. These may be accessed from the command line as follows: "java -jar jxl.jar -csv spreadsheet.xls" Reads spreadsheet.xls and writes out t...
2018-04-07, 1828🔥, 0💬

Test to Create Excel File with jxl.jar
How to run the test to create a new Excel file with jxl.jar? If you want to run the test program that comes with jxl.jar to create a new Excel file, you can follow these steps: 1. Open command line window to verify jxl.jar installation. "jxl.jar" file and "resources" folder are needed: C:\cd \fyicen...
2018-04-07, 1795🔥, 0💬

Test to Read Excel File as CSV with jxl.jar
How to run the test to read an existing Excel file as CSV output with jxl.jar? The following steps shows you how to run the test to read an existing Excel file as CSV output with jxl.jar: 1. Open command line window to verify jxl.jar installation. "jxl.jar" file and "jxlrwtest" file are needed: C:\c...
2018-04-07, 1777🔥, 0💬

Test to Read Excel File as XML with jxl.jar
How to run the test to read an existing Excel file as XML output with jxl.jar? The following steps shows you how to run the test to read an existing Excel file as XML output with jxl.jar: 1. Open command line window to verify jxl.jar installation. "jxl.jar" file and "jxlrwtest" file are needed: C:\c...
2018-04-07, 1617🔥, 0💬

Test to Read Excel File as XML with Format Properties
How to run the test to read an existing Excel file as XML output with cell format properties with jxl.jar? The following steps shows you how to run the test to read an existing Excel file as XML output with cell format properties with jxl.jar: 1. Open command line window to verify jxl.jar installati...
2018-04-07, 1247🔥, 0💬

GetServerCertificate.java - Get Server Certificate
How to get the server certificate of a HTTPS Website? If you created a URL object with "new java.net.URL(...)", you can use the getServerCertificates() method on the HttpsURLConnection class to get the server certificate of a HTTPS Website: // Copyright (c) FYIcenter.com import java.net.*; import ja...
2018-03-31, 3510🔥, 0💬

SslSocketClient.java - SSL Socket Client Example
How to write an SSL socket client code to communicate to a HTTPS Website using jsse.jar? If you want to write an SSL socket client code to communicate to a HTTPS Website using jsse.jar, you can following the example below: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import ja...
2018-03-31, 2224🔥, 0💬

SslCipherList.java - SSL Cipher List
How to get a list of SSL ciphers supported in jsse.jar? You can use the following sample Java code to a list of SSL ciphers supported in jsse.jar: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import javax.net.ssl.*; public class SslCipherList { public static void main(String[]...
2018-03-31, 2057🔥, 0💬

SslClientCmd.java - SSL Client Command Example
How to create an SSL client program to run like a command? Here is an SSL client example program you can run like a command to communicate to any HTTPS web server: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*; import javax.net.ssl.*; public class SslClientCmd { public static vo...
2018-03-31, 1882🔥, 0💬

SslSocketInfo.java - SSL Socket Information
How to get more information about the SSL Socket object? It is created as "SSLSocketFactory.createSocket ()".If you created a URL object with "new java.net.URL(...)", you can use the following sample Java code to get more information about the URL object: // Copyright (c) FYIcenter.com import java.n...
2018-03-31, 1742🔥, 0💬

Install Oracle Database 11g XE for ojdbc.jar Test
How to download and install Oracle Database 11g XE on my local computer to test ojdbc Oracle Driver? If you want to test ojdbc Oracle Driver and do not have any Oracle database to access, you can follow these steps to download and install Oracle Database 11g XE on your local computer. 1. Download Or...
2018-03-28, 4845🔥, 0💬

OracleCreateTable.java - Oracle JDBC Create Table
How to create a new table in Oracle using the ojdbc Oracle Driver? I want to see a Java program example. Here is a Java example that shows you how to create a new table in Oracle using the ojdbc Oracle Driver: // Copyright (c) FYIcenter.com import java.sql.DriverManager; import java.sql.Connection; ...
2018-03-28, 2141🔥, 0💬

OracleJdbcConnection.java - Oracle JDBC Connection
How to create a JDBC connection to Oracle database using the ojdbc Oracle Driver? I want to see a Java program example. If you have Oracle Database 11g XE running on your local computer, you can use the following example to learn how to create a JDBC connection: // Copyright (c) FYIcenter.com import...
2018-03-28, 1995🔥, 0💬

OracleInsertRow.java - Oracle JDBC Insert Row
How to insert a row of data into a table in Oracle using the ojdbc Oracle Driver? I want to see a Java program example. Here is a Java example that shows you how to insert a row of data into a table in Oracle using the ojdbc Oracle Driver: // Copyright (c) FYIcenter.com import java.sql.DriverManager...
2018-03-28, 1898🔥, 0💬

Start Oracle Database 11g XE on Windows
How to start Oracle Database 11g XE on my local Windows computer? I have installed it earlier. If you have Oracle Database 11g XE (Express Edition) installed on your local Windows computer, you can follow these steps to start and stop Oracle Database 11g server: 1. Run "Start &gt; All Programs &...
2018-03-28, 1860🔥, 0💬

-Djavax.net.debug - jsse.jar Debugging Options
How to use the -Djavax.net.debug jsse.jar debug option? If you are having trouble using jsse.jar, you can use the -Djavax.net.debug JVM property as described in this tutorial: Compile and run the example HttpsUrlReader.java provided in the previous tutorial with the -Djavax.net.debug=help property: ...
2018-03-24, 2605🔥, 0💬

HttpsUrlReader.java - Reading Data from HTTPS URL
How to read data from an HTTPS URL with jsse.jar? I want to see a Java program example. jsse.jar, Java Secure Socket Extension, allows you to communicate securely with an SSL-enabled web server by using the "https" URL protocol. Here is an example program, HttpsUrlReader.java, that can be used to re...
2018-03-24, 2215🔥, 0💬

HttpsUrlInfo.java - HTTPS URL Information
How to get more information about the HTTP URL object? It is created as "new java.net.URL(...)". If you created a URL object with "new java.net.URL(...)", you can use the sample Java code to get more information about the URL object: // Copyright (c) FYIcenter.com import java.net.*; import java.io.*...
2018-03-24, 1956🔥, 0💬

SSL Handshake Message Examples
How to get some SSL Handshake Message Examples? You can get SSL Handshake Message Examples as shown below: \fyicenter&gt;\local\jdk-1 .8.0\bin\java-Djavax.net.debug=ssl:handshak e:dataHttpsUrlReader &gt; ssl.log \fyicenter&gt;edit ssl.log *** ClientHello, TLSv1.2 [write] MD5 and SHA1 has...
2018-03-24, 1616🔥, 0💬

SSL Handshake Message Sequence
What is the SSL handshake message sequence? I want to know how many messages are exchanged between the client and the server. When a SSL client is connecting to a SSL server, they will communicate to each other with the following sequence of messages to perform SSL handshake and exchange application...
2018-03-24, 1238🔥, 0💬

FAQ for Apache Xerces XML Parser
Where to find answers to frequently asked questions on Apache Xerces XML Parser? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Apache Xerces XML Parser): Downloading Apache Xerces XML Parser What Is Apache Xerces XML Parser Donwload Xerces-J-bin.2.1...
2018-03-17, 2896🔥, 0💬

CharMap.exe - Find Character Unicode Value on Windows
How to find the Unicode code value of a special character in a font on Windows? I want to use the Latin small letter "Phi" on the Calibri font. On Windows computers, you can run the "CharMap.exe" program to find the Unicode code value of a character of and font. For example, you can run this command...
2018-03-17, 3018🔥, 0💬

Use Unicode Characters with FOP
How to use Unicode characters with FOP? I want to use the Latin small letter "Phi" in my FO file. If you know the Unicode code value of the character you want to use, you can enter it in your FO file in the &amp;#xnnnn format. The following FO file shows you some Unicode characters in the Calibr...
2018-03-17, 2991🔥, 0💬

"fop" Command in fop-2.7-bin.zip
What Is the "fop" command in fop-2.7-bin.zip? Can I use it to generate PDF files? "fop" command is the command line tool that allows you to run FOP 2.7 as a standalone application. It reads a XSL-FO file and generates a PDF file by default. "fop" command requires that the environment variable JAVA_H...
2018-03-17, 1689🔥, 0💬

<< < 31 32 33 34 35 36 37 38 39 40 41 > >>   Sort: Rank