<< < 74 75 76 77 78 79 80 81 82 83 84 > >>   Sort: Date

portecle.jar - Public Key Certificate Tool
Portecle is a user friendly GUI application for creating, managing and examining keystores, keys, certificates, certificate requests, certificate revocation lists and more. JAR File Size and Download Location: JAR name: portecle.jar, portecle-1.9.jar JAR version: portecle-1.9.jar Target JDK version:...
2015-10-17, 2109🔥, 0💬

sun.plugin2.applet.viewer.JNLP2Viewer - JNLP Viewer
How to "sun.plugin2.applet.viewer.JNL P2Viewer"program from JRE plugin.jar file? "sun.plugin2.applet.viewer.JNL P2Viewer"program allows you to view Applets with JNLP (Java Network Launch Protocol) references embedded in HTML documents. "sun.plugin2.applet.viewer.JNL P2Viewer"program is stored in the...
2018-11-11, 2108🔥, 0💬

Using commons-fileupload.jar with Tomcat
Where to find answers to frequently asked questions on Using commons-fileupload.jar with Tomcat. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using commons-fileupload.jar with Tomcat: Commons FileUpload Example with HTML Pages Commons FileUpload Ex...
2016-11-17, 2105🔥, 0💬

Run Sample Program for junit-4.8.1.jar
How to run sample program with junit-4.8.1.jar? I have Calculator.java and the JUnit test program, CalculatorTest.java ready. junit-4.8.1.jar is the version 4.8.1 of JUnit JAR library file. To run the JUnit test program, CalculatorTest.java, you need launch the org.junit.runner.JUnitCore class and s...
2016-03-02, 2104🔥, 0💬

Example of Creating Excel File with jxl.jar
Where can I find an example Java code that uses jxl.jar to create a new Excel file? You can follow these suggestions and example to create a new Excel file with jxl.jar: 1. Create a writable workbook file using the factory method on the Workbook class: WritableWorkbook workbook = Workbook.createWork...
2018-02-21, 2100🔥, 0💬

FOP Missing Italic and Bold Fonts for PDF
Why I am getting the 'Font "Calibri,normal,700" not found. Substituting with "Calibri,normal,400"' error with FOP? You are getting the "Font X,normal,700 not found. Substituting with X,normal,400" error, if FOP can not find the "Bold" font definition for the font X. Computer fonts are usually define...
2018-04-12, 2098🔥, 0💬

DomXmlParserWhitespace.java - Parse XML File without Whitespaces
How to parse an XML file with the DOM API without including whitespaces between XML elements? In many cases, whitespaces are included in XML fiels before and after XML elements to make the XML file more readable. For example, the follwoing XML file, User.xml, includes whitespaces: &lt;?xml versi...
2017-12-13, 2098🔥, 0💬

JRE 6 alt-string.jar - Alternative String
JRE 6 alt-string.jar is the JAR file for JRE 6 Alternative String library. JAR File Information: Directory of C:\fyicenter\jdk-1.6.0_45\jre\ lib42,042 alt-string.jar   ⇒ JRE 6 charsets.jar - Character Set Encoding ⇐ JRE 6 alt-rt.jar - Alternative RT (RunTime) ⇑ Download and Use JDK 6 ⇑⇑ FAQ for JD...
2019-01-20, 2096🔥, 0💬

Hello Example of XSL-FO - Hello.fo
How to write a Hello example of XSL-FO? XSL-FO (Extensible Stylesheet Language - Formatting Objects) is an XML based language that can be used to describes the way pages are set up. Here is the XML source code of a simple XSL-FO file, Hello.fo: &lt;?xml version="1.0" encoding="utf-8"?&gt; &a...
2015-11-26, 2092🔥, 0💬

JDK 1.1 Installed Directories and Files
What are JDK 1.1 installed directories and files? All JDK 1.1 installed directories and files are located at the "Installed to" directory. For example: C:\fyicenter\jdk-1.1.8: C:\fyicenter\jdk-1.1.8\... 6656 bin\appletviewer.exe 6144 bin\appletviewer_g.exe 5120 bin\jar.exe 5120 bin\jar_g.exe 6144 bi...
2023-01-04, 2087🔥, 14💬

Running Program with Apache Log4j Configuration
How to run my program with Apache Log4j configuration files? I have my program using Log4j 2 API compiled. And my log4j2.xml configuration file is ready. The easiest way to run your program with a Log4j 2 configuration file is: Name your configuration file as log4j2.xml. Place your configuration fil...
2015-11-11, 2082🔥, 0💬

ScatterChart - Apache POI Excel File Example
What is ScatterChart example in the Apache POI package? How to run ScatterChart example? ScatterChart example in the Apache POI package is created by Roman Kashitsyn. It illustrates how to create a simple scatter chart in *.xlsx format. ScatterChart example uses the XSSF (OpenXML SpreadSheet Format)...
2017-03-11, 2079🔥, 0💬

What Is jakarta-log4j-1.1.3.zip
What Is jakarta-log4j-1.1.3.zip? jakarta-log4j-1.1.3.zip is the binary package of Log4j 1.1.3 in ZIP format. Log4j is a logging library for Java applications developed by Apache Software Foundation. Download File Size and Download Location: File name: jakarta-log4j-1.1.3.zip File size: 2,415,726 byt...
2015-12-16, 2076🔥, 0💬

What Is logging-log4j-1.2.11.zip
What Is logging-log4j-1.2.11.zip? logging-log4j-1.2.11.zip is the binary package of Log4j 1.2.11 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.11.zip File size: 3,572,060...
2015-12-09, 2074🔥, 0💬

Understanding and Using javaws.jar
Where to find answers to frequently asked questions on Understanding and Using javaws.jar. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Understanding and Using javaws.jar: Where Is javaws.jar in JRE 11 What Is javaws.jar in JRE 8 What Is javaws.jar...
2017-12-31, 2073🔥, 0💬

Run org.junit.runner.JUnitCore in junit-4.8.1.jar
How to run org.junit.runner.JUnitCore in junit-4.8.1.jar? org.junit.runner.JUnitCore is the main class of the JUnit 4.8.1, which requires no other libraries. You can run org.junit.runner.JUnitCore directly: \fyicenter&gt;java -version java version "1.8.0_45" \fyicenter&gt;java -cp .;\local\l...
2016-03-02, 2073🔥, 0💬

Download and Install jakarta-log4j-1.0.4.tar.gz
How to download and install jakarta-log4j-1.0.4.tar.gz? Log4j is a logging library for Java applications developed by Apache Software Foundation. You can follow these steps to download and install jakarta-log4j-1.0.4.tar.gz to use Log4j: 1. Go to the Log4j Archive Website . 2. Click to open the "1.0...
2015-12-18, 2070🔥, 0💬

Tutorial4 - Apache POI PowerPoint Slides Example
What is Tutorial4 example in the Apache POI package? How to run Tutorial4 example? Tutorial4 example in the Apache POI package is created by Yegor Kozlov. It demonstrates how to create a table on a PowerPoint slide in *.pptx format. Tutorial4 example uses the OpenXML Slide Layout Format (XSLF) API, ...
2017-02-14, 2069🔥, 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, 2066🔥, 0💬

Download and Install logging-log4j-1.2.13.zip
How to download and install logging-log4j-1.2.13.zip? Log4j is a logging library for Java applications developed by Apache Software Foundation. You can follow these steps to download and install logging-log4j-1.2.13.zip to use Log4j: 1. Go to the Log4j Archive Website . 2. Click to open the "1.2.13/...
2015-12-04, 2062🔥, 0💬

JDK 17 jdk.jcmd.jmod - JCmd Tool
JDK 17 jdk.jcmd.jmod is the JMOD file for JDK 17 JCmd tool, which can be invoked by the "jcmd" command. JDK 17 JCmd tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jd k.jcmd.jmod.JDK 17 JCmd tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\mod. ..
2023-08-17, 2059🔥, 0💬

WebSocketEchoClient.java - WebSocket Echo Client
How to write a simple client program to connect to the WebSocket Echo Server? I you want to write a simple client program to connect to the WebSocket Echo Server running at wss://echo.websocket.org, you can follow these suggestions: 1. Write a test Java class annotated as @ClientEndpoint: @ClientEnd...
2018-01-16, 2058🔥, 0💬

What Is jaxb-api-2.2.12.jar JAXB API JAR
What is jaxb-api-2.2.12.jar JAXB API JAR? Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java classes to XML representations. jaxb-api-2.2.12.jar is the release 2.2.12 API Java library for JAXB 2.2 specification. JAR File Size and Download Location: JAR nam...
2018-06-01, 2051🔥, 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, 2050🔥, 0💬

<< < 74 75 76 77 78 79 80 81 82 83 84 > >>   Sort: Date