<< < 73 74 75 76 77 78 79 80 81 82 83 > >>   ∑:2539  Sort:Date

List of XSL-FO Examples in FOP
What are XSL-FO example files provided in FOP? I want to learn how to write XSL-FO files. FOP is binary distribution package of Apache FOP 2.7. It contains the following XSL-FO example files: simple.fo - a very simple file which gives use a first impression of the structure of an XSL-FO file normal....
2016-06-30, ∼2911🔥, 0💬

spdy-server-9.0.0.jar - Jetty Implementation of SPDY
spdy-server.jar is the server package of the Jetty implementation of the SPDY protocol. SPDY is a Google experiment with protocols for the web. Its goal is to reduce the latency of web pages. JAR File Size and Download Location: File name: spdy-server.jar, spdy-server-9.0.0.v20130308.ja rFile size: ...
2013-07-03, ∼2911🔥, 0💬

Using commons-net.jar in Java Programs
Where to find answers to frequently asked questions on Using commons-net.jar in Java Programs. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using commons-net.jar in Java Programs: Class Packages in Apache commons-net.jar What Is commons-net-example...
2017-05-12, ∼2908🔥, 0💬

Digital Signatures of JAR Files
What are digital signatures of JAR files? And where are they stored in the JAR file? Digital signatures are encrypted digests of entries archieved in the JAR file. Digital signature information is stored in multiple files under the META-INF path name: META-INF/MANIFEST.MF - Contains digests of JAR e...
2016-04-15, ∼2901🔥, 0💬

SSL Handshake Messages with Client Authentication
How to get SSL Handshake Messages that use client Authentication? You can get SSL Handshake Messages that use client Authentication as shown below: 1. Open command window and run SslServerCmd.java with client certificate authentication turned on: \fyicenter&gt;\local\jdk-1 .8.0\bin\java-Djavax.n...
2018-06-12, ∼2897🔥, 0💬

uima-adapter-soap-2.4.0.jar - Apache UIMA SOAP Adapter
Unstructured Information Management applications (UIMA) are software systems that analyze large volumes of unstructured information in order to discover knowledge that is relevant to an end user. uima-adapter-soap.jar - The SOAP Adapter. JAR File Size and Download Location: File name: uima-adapter-s...
2013-08-05, ∼2895🔥, 0💬

SslServerCmd.java - SSL Server Command Example
How to create an SSL server program to run like a command? In order to create an SSL server program, you need to do the following: 1. Load the keystore file that contains the server certificate. Remember to specify the keystore password as shown below: KeyStore ks = KeyStore.getInstance("JKS"); ks.l...
2018-06-27, ∼2894🔥, 0💬

MySqlJdbcConnection.java - Connector/J JDBC Connection
How to create a JDBC connection to MySQL database using the Connector/J JDBC driver? I want to see a Java program example. If you have a MySQL server running on your local computer and listening on the default port 3306, you can use the following example, to learn how to create a JDBC connection: //...
2016-12-02, ∼2892🔥, 0💬

Run Sample with junit-3.8.1.jar in Text Mode
How to run sample program with junit-3.8.1.jar in text mode? I have Calculator.java and the JUnit test program, CalculatorTest.java ready. junit-3.8.1.jar is the version 3.8.1 of JUnit JAR library file. It provides two execution modes: text mode and GUI mode. To run the JUnit test program, Calculato...
2016-03-09, ∼2888🔥, 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, ∼2883🔥, 0💬

What Is logging-log4j-1.2.13.zip
What Is logging-log4j-1.2.13.zip? logging-log4j-1.2.13.zip is the binary package of Log4j 1.2.13 in ZIP format. Log4j is a logging library for Java applications developed by Apache Software Foundation. Download File Size and Download Location: File name: logging-log4j-1.2.13.zip File size: 3,479,718...
2015-12-07, ∼2880🔥, 0💬

What Is POP3 (Post Office Protocol version 3)
What Is POP3 (Post Office Protocol version 3)? Can I use it to download emails? POP3 (Post Office Protocol version 3) is a network protocol that allow you to access a mailbox on a remote email server. Yes, you can use POP3 to download emails. POP3 can not be used to send out emails. POP3 is defined ...
2016-01-04, ∼2879🔥, 0💬

Downloading and Reviewing commons-logging.jar
Where to find answers to frequently asked questions on Downloading and Reviewing commons-logging.jar. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Downloading and Reviewing commons-logging.jar: commons-logging.jar, What Is It? Download and Install ...
2016-11-16, ∼2877🔥, 0💬

Convert XML to FO with FOP
How to convert my data in XML to XSL-FO format with FOP? I have the XSLT file to define my data should be formatted. If your data stored in XML format and you have an XSLT file that defines how data should be formatted, you can use the XSLT process provided in FOP to convert the XML file to an XSL-F...
2016-07-05, ∼2867🔥, 0💬

JRE 6 jce.jar - JCE (Java Cryptography Extension)
JRE 6 jce.jar is the JAR file for JRE 6 JCE (Java Cryptography Extension), which provides a framework and implementation for encryption, key generation and key agreement, and Message Authentication Code (MAC) algorithms. JAR File Information: Directory of C:\fyicenter\jdk-1.6.0_45\jre\ lib88,238 jce...
2020-10-09, ∼2862🔥, 1💬

💬 2020-10-09 wanqing: gooooooood

sun.tools.native2ascii.Main - "native2ascii" Command
How to run "native2ascii" command from JDK tools.jar file? "native2ascii" command allows you to convert Java source code or other files from different encoding to \udddd ASCII format. "native2ascii" command is supported by the lib\tools.jar JAR file JDK 1, 2, 3, 4, 5, 6, 7, and 8. You can run the "n...
2019-11-08, ∼2861🔥, 0💬

Add Security Exception for JavaWS to Run Application
How to modify security settings to allow JavaWS to run applications from my Website? My Website does not have server certificate. If your Website does not have server certificate, you can add an exception in the security setting for JavaWS to run your application as shown in this tutorial: 1. Go to ...
2017-07-15, ∼2859🔥, 0💬

"xalan" Command in fop-0.20.5-bin.zip
What Is the "xalan" command in fop-0.20.5-bin.zip? Can I use it to transform XML file using XSLT templates? "xalan" command is the command line tool that allows you to run FOP 0.20.5 as a standalone application to transform any XML file with a given XSLT template. It reads an XML file and an XSLT fi...
2016-02-10, ∼2858🔥, 0💬

jetty-client-8.1.7.v20120910.jar - jetty Client
Jetty provides an HTTP server, HTTP client, and javax.servlet container. These components are open source and available for commercial use and distribution. JAR File Size and Download Location: File name: jetty-client.jar, jetty-client-8.1.7.v20120910.j arFile size: 87619 bytes Date modified: 10-Sep...
2013-06-18, ∼2858🔥, 0💬

Sample Program for junit-4.8.1.jar
How to write a Sample program to use junit-4.8.1.jar? JUnit is a simple framework to write repeatable tests for Java applications. In order to use junit-4.8.1.jar, we need to write a simple Java application, Calculator.java: // Copyright (c) 2015 FYIcenter.com public class Calculator { public int ev...
2016-02-29, ∼2857🔥, 0💬

Downloading jTDS - JDBC Driver for SQL Server
Where to find answers to frequently asked questions on Downloading and Installing jTDS - JDBC Driver for SQL Server and Sybase? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Downloading and Installing jTDS - JDBC Driver for SQL Server and Sybase: Wh...
2016-11-26, ∼2856🔥, 0💬

org.apache.commons.collections4.bag.HashBag Example
What is org.apache.commons.collections 4.bag.HashBagclass? How to use org.apache.commons.collections 4.bag.HashBagclass? org.apache.commons.collections 4.bag.HashBagclass is a Java class offered in commons-collections4.jar that implements the org.apache.commons.collections 4.Baginterface using a Has...
2017-05-20, ∼2855🔥, 0💬

RhinoExportVar.java - Exporting Rhino Variable to Java
How to export variable from Rhino JavaScript context to a Java object? If you want to export variable from Rhino JavaScript context to a Java object, you can follow this tutorial: 1. Create a Context object and Scriptable scope object with an instance of ContextFactory: ContextFactory f = new Contex...
2017-08-08, ∼2854🔥, 0💬

axiom-c14n-1.2.14.jar - AXis Object Model C14N
The Apache Axiom library provides an XML Infoset compliant object model implementation which supports on-demand building of the object tree. It supports a novel "pull-through" model which allows one to turn off the tree building and directly access the underlying pull event stream using the StAX API...
2013-11-13, ∼2854🔥, 0💬

<< < 73 74 75 76 77 78 79 80 81 82 83 > >>   ∑:2539  Sort:Date