<< < 80 81 82 83 84 85 86 87 88 89 90 > >>   Sort: Date

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, 1776🔥, 0💬

Test to Read Formulas from Excel File with jxl.jar
How to run the test to read formulas from an existing Excel file with jxl.jar? The following steps shows you how to run the test to read formulas from an existing Excel file with jxl.jar: 1. Open command line window to verify jxl.jar installation. "jxl.jar" file and "jxlrwtest" file are needed: C:\c...
2018-02-21, 1773🔥, 0💬

ShowJdbcDrivers.java - Connector/J JDBC Driver Example
How to verify if Connector/J JDBC Driver is loaded corrected from the classpath? I want to see a Java program example. Here is an example program, ShowJdbcDrivers.java, that can be used to verify if Connector/J JDBC Driver is loaded corrected from the classpath or not: // Copyright (c) FYIcenter.com...
2016-12-04, 1764🔥, 0💬

jetty-rewrite-8.1.7.v20120910.jar - Jetty Rewrite
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-rewrite.jar, jetty-rewrite-8.1.7.v20120910. jarFile size: 31803 bytes Date modified: 10-S...
2015-04-27, 1760🔥, 0💬

sun.tools.jinfo.JInfo - "jinfo" Command
How to run "jinfo" command from JDK tools.jar file? "jinfo" command allows you to print out general information of a given JVM process on your computer system. "jinfo" command is supported by the lib\tools.jar JAR file JDK 1, 2, 3, 4, 5, 6, 7, and 8. You can run the "jinfo" command using the JDK too...
2019-11-21, 1758🔥, 0💬

What Is Java EE (Enterprise Edition)
What is Java EE (Java Platform Enterprise Edition)? Java EE, short for Java Platform Enterprise Edition, is a computing platform for development and deployment of enterprise software for network and web service applications. Java EE was formerly known as Java 2 Platform Enterprise Edition or J2EE. J...
2018-03-10, 1758🔥, 0💬

Examples for jTDS - JDBC Driver for SQL Server
Where to find answers to frequently asked questions on Java Examples for jTDS - JDBC Driver for SQL Server. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Java Examples for jTDS - JDBC Driver for SQL Server. jTDS JDBC Driver in Java Database Connecti...
2016-11-26, 1758🔥, 0💬

WebSocketOpenClose.java - Session Open and Close
How to provide call back methods for session open and close events with WebSocket API? Adding session open and close event call back methods can be done with @OnOpen and @OnCLose annotated methods as shown below: // Copyright (c) 2016 FYIcenter.com import java.net.URI; import javax.websocket.ClientE...
2018-01-16, 1755🔥, 0💬

Using commons-collections.jar in Java Programs
Where to find answers to frequently asked questions on Using commons-collections4.jar or commons-collections.jar in Java Programs. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using commons-collections4.jar or commons-collections.jar in Java Progra...
2016-11-19, 1750🔥, 0💬

SaxXmlWhitespace.java - ignorableWhitespace() Event Handler
How do I catch those whitespace text contents that are removed from the SAX parser? When DTD is applied to the XML document, the SAX parser will quietly remove whitespace text contents and not call the characters() event handler. If you want to catch those whitespace text contents during the parsing...
2017-12-09, 1745🔥, 0💬

Create JNLP File for Java Application
How to create a JNLP file for my Java application? I have my application packaged in an executable JAR file. If you have your application packaged in an executable JAR file, you can follow this tutorial to create a JNLP file to launch the application: 1. Create a JNLP file, HelloJavaWs.jnlp for the ...
2017-07-15, 1745🔥, 0💬

Hello Program with Apache Log4j
How to write a simple Hello program with Apache Log4j? I need it to test out which JARs are needed to compile and run my Java applications using Apache Log4j. Below is a simple Hello program, HelloLog4j2.java, that calls the Log4j 2 API: // Copyright (c) FYIcenter.com import org.apache.logging.log4j...
2015-11-18, 1745🔥, 0💬

DomXmlSerializer.java - Serialize DOM to XML String
How to serialize a DOM object to an XML string? If you want to serialize (or convert) a DOM object to an XML string, you can follow these suggestions: 1. Build your DOM document object with the DOM API: DocumentBuilder b = f.newDocumentBuilder(); Document d = b.newDocument(); Element e = d.createEle...
2017-12-13, 1744🔥, 0💬

XLS2CSVmra - Apache POI Excel File Example
What is XLS2CSVmra example in the Apache POI package? How to run XLS2CSVmra example? XLS2CSVmra example in the Apache POI package is created by Nick Burch. It works as an XLS to CSV (Comma Separated Value) processor, that uses the MissingRecordAware EventModel code to ensure it outputs all columns a...
2017-03-11, 1743🔥, 0💬

FOP TTFReader - Build Font Definitions
How to build font definition file with FOP? I have the font file for my favorite font in TTF format. If you the font file in TTF format, you can build the font definition file with the FOP TTFReader program. For example, you see "Calibri" and "Gothic" font files located in \windows\fonts folder: 813...
2018-04-12, 1741🔥, 0💬

easypo.xsd - Purchase Order Test XML Schema
What is the Purchase Order Test XML Schema, easypo.xsd? easypo.xsd is a test XML Schema represents a typical purchase order. It is included in the \fyicenter\xmlbeans-2.6.0\sche masfolder, if you have XMLBeans-2.6.0.zip installed as described in the previous tutorial: &lt;xs:schema xmlns:xs="htt...
2018-01-13, 1741🔥, 0💬

DomDocumentTree.java - Build DOM Document Tree
How to build an XML document tree with the DOM API? If you want to build an XML document tree with the DOM (Document Object Model) API, you can follow these suggestions: 1. Use the factory class to create DocumentBuilder object: DocumentBuilderFactory f = DocumentBuilderFactory.newInst ance();Docume...
2017-09-08, 1740🔥, 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, 1737🔥, 0💬

Run QuickStart.java HttpComponents Client Example
How to run the QuickStart.java HttpComponents Client Example? I have httpcomponents-client-4.5.3-bi n.zipinstalled. If you have httpcomponents-client-4.5.3-bi n.zipinstalled, you can follow this tutorial to run the QuickStart.java HttpComponents Client Example: 1. Open the example program file Quick...
2017-11-05, 1736🔥, 0💬

jdk.javadoc/com.sun.tools.javadoc.Main - "javadoc" Command
How to run "javadoc" command from JDK lib\modules JImage file? "javadoc" command allows you to generate Java documentation in HTML format from Java source code files. "javadoc" command is supported by the jmods\jdk.jcmd.jmod module file, which is also linked into the lib\modules JImage file in JDK 9...
2020-02-07, 1730🔥, 0💬

Reference Implementation of JAXB (Java Architecture for XML Binding)
Where to find answers to frequently asked questions on Reference Implementation of JAXB (Java Architecture for XML Binding)? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Reference Implementation of JAXB (Java Architecture for XML Binding): What Is ...
2018-01-08, 1728🔥, 0💬

spdy-jetty-8.1.7.v20120910.jar - Jetty SPDY
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: spdy-jetty.jar, spdy-jetty-8.1.7.v20120910.jar File size: 34967 bytes Date modified: 10-Sep-201...
2015-04-29, 1728🔥, 0💬

Run ClientChunkEncodedPost.java HttpComponents Client Example
How to run the ClientChunkEncodedPost.java HttpComponents Client Example? I have httpcomponents-client-4.5.3-bi n.zipinstalled. If you have httpcomponents-client-4.5.3-bi n.zipinstalled, you can follow this tutorial to run the ClientChunkEncodedPost.java HttpComponents Client Example: 1. Open the ex...
2017-11-02, 1719🔥, 0💬

JDK 9 lib/src.zip - Source Code
What is the lib\src.zip file in JDK 9 installation directory? lib\src.zip file in JDK 9 installation directory is the JDK 9 source code file, which includes source code for Java language modules and JDK tool modules. You can unzip lib\src.zip and see the list of modules: C:&gt;dir \fyicenter\jdk...
2020-02-20, 1718🔥, 0💬

<< < 80 81 82 83 84 85 86 87 88 89 90 > >>   Sort: Date