<< < 88 89 90 91 92 93 94 95 96 97 98 > >>   Sort: Date

What Is Apache BCEL
What Is Apache BCEL (Byte Code Engineering Library)? The Byte Code Engineering Library (Apache Commons BCEL™) is intended to give users a convenient way to analyze, create, and manipulate (binary) Java class files (those ending with .class). Classes are represented by objects which contain all the s...
2021-07-10, 1529🔥, 0💬

jdk.jartool/sun.security.tools.jarsigner.Main - "jarsigner" Command
How to run "jarsigner" command from JDK lib\modules JImage file? "jarsigner" command allows you to digitally sign JAR (Java ARchive) files or verify digital signatures provided in JAR files. "jarsigner" command is supported by the jmods\jdk.jartool.jmod module file, which is also linked into the lib...
2020-02-07, 1529🔥, 0💬

jdk.jdeps/com.sun.tools.jdeps.Profile - JDeps Profiler
How to run "jdk.jdeps/com.sun.tools.jdeps .Profile"tool from JDK lib\modules JImage file? "jdk.jdeps/com.sun.tools.jdeps .Profile"tool allows you to generate a Java package dependency profile. "jdk.jdeps/com.sun.tools.jdeps .Profile"tool is supported by the jmods\jdk.jdeps.jmod module file, which is...
2019-09-04, 1529🔥, 0💬

jdk.hotspot.agent/sun.jvm.hotspot.utilities.RBTree - RB Tree Test
How to run "jdk.hotspot.agent/sun.jvm.hot spot.utilities.RBTree"test from JDK lib\modules JImage file? "jdk.hotspot.agent/sun.jvm.hot spot.utilities.RBTree"tool allows you to run a RB Tree test program. "jdk.hotspot.agent/sun.jvm.hot spot.utilities.RBTree"tool is supported by the jmods\jdk.hotspot.a...
2019-08-23, 1526🔥, 0💬

Apache POI Components for PowerPoint Slides
What are Apache POI components that can be used to read and write Microsoft PowerPoint slides? There are 2 components in the Apache POI Java library that can be used to read and write Microsoft PowerPoint slide files: HSLF (Horrible Slide Layout Format) component provides API to read and write older...
2017-02-14, 1525🔥, 0💬

Downloading servlet-api.jar - Java Servlet API
Where to find answers to frequently asked questions on Downloading and installing servlet-api.jar - Java Servlet API? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Downloading and installing servlet-api.jar - Java Servlet API: What Is Java Servlet A...
2024-07-18, 1522🔥, 1💬

💬 2024-07-18 huzhongwei: 试用

Connect to SSL Server Failed with Invalid Certificate
Why am I getting the ValidatorException error when connecting to an SSL server? You are getting a ValidatorException error when connecting to an SSL server, because the server certificate can not be trusted for one of the following possible reasons: The root CA of the server certificate is unknown. ...
2018-06-27, 1520🔥, 0💬

Other Apache POI Examples
Where to find answers to frequently asked questions on other Apache POI Examples. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on other Apache POI Examples. Msg2txt - Apache POI Outlook Email Example Source code of example programs are included in the...
2017-02-08, 1519🔥, 0💬

Tutorial2 - Apache POI PowerPoint Slides Example
What is Tutorial2 example in the Apache POI package? How to run Tutorial2 example? Tutorial2 example in the Apache POI package is created by Yegor Kozlov. It demonstrates how to create basic paragraph and text formatting on a PowerPoint slide in *.pptx format. Tutorial2 example uses the OpenXML Slid...
2017-02-14, 1513🔥, 0💬

Commons CLI API - Option.Builder Class
How to use org.apache.commons.cli.Option. Builderclass to define options? Commons CLI API offers 3 ways to define options: 1. Define and add an option in a single addOption() call - For example: import org.apache.commons.cli.Options ;options.addOption("i", "input", true, "Input string"); 2. Define a...
2020-05-15, 1510🔥, 0💬

JDK/JRE 5 JAR Files List
Where to find a full list of JAR files provided in JDK/JRE 5? Here is a list of all JAR files provided in JDK/JRE 5. Directory of C:\fyicenter\jdk-1.5.0_22\lib 142,477 dt.jar 278,020 htmlconverter.jar 232,634 jconsole.jar 7,060,373 tools.jar Directory of C:\fyicenter\jdk-1.5.0_22\jre\ lib8,898,567 c...
2019-04-03, 1510🔥, 0💬

Client Certificate Authentication Example
How to write a SSL client program that use a client certificate? The SSL is asking for client certificate authentication. When an SSL server program is asking for client certificate authentication, it is usually coded as the following: serverSocket.setNeedClientAuth (true);In the SSL client program,...
2018-06-12, 1509🔥, 0💬

Apache Maven Tool, What Is It
What is Apache Maven tool? Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information. Maven's primary goal is to allow a developer to ...
2020-11-11, 1508🔥, 0💬

Download Apache Commons CLI Source Package
How to download and install Apache Commons CLI Source Package? The source package contains Java source code files for Apache Commons CLI. They are compressed into a single file like commons-cli-1.5.0-src.zip. You can compile them with different versions of JDK. You can download the source package fi...
2020-12-22, 1506🔥, 0💬

Using XML DOM API with Apache Xerces
Where to find answers to frequently asked questions on Using XML DOM API with Apache Xerces. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using XML DOM API with Apache Xerces: DomClassInfo.java - DOM Implementation Class Version of Apache Xerces Us...
2017-12-21, 1505🔥, 0💬

SchemaCompiler - Call XML Schema Compiler Directly
How to call the XML Schema Compiler, SchemaCompiler.class, directly? The "scomp" command is not working. If the "scomp" command is not working, you can call the XML Schema Compiler, SchemaCompiler.class, directly as shown below: 1. Run "java" command from Java SE 8 JDK to call SchemaCompiler.class: ...
2017-07-07, 1501🔥, 0💬

Requirements to Use JavaWS in Web Pages
What are Requirements to Use JavaWS in Web Pages? I want my end users to launch my Java application from my Website. If you want your end users to launch your Java application from your Website, you need to prepare the following: 1. Tell your end users to download and install JRE (Java Runtime Envir...
2017-12-31, 1496🔥, 0💬

AligningCells - Apache POI Excel File Example
What is AligningCells example in the Apache POI package? How to run AligningCells example? AligningCells example in the Apache POI package is created by Cristian Petrula. It shows how various alignment options work when generating *.xlsx files. AligningCells example uses the XSSF (OpenXML SpreadShee...
2017-03-11, 1495🔥, 0💬

Download and Install Snappy-Java Binary Package
How to download and install Snappy-Java Binary Package? Snappy-Java is a Java port of the "snappy", a fast C++ compresser/decompresser developed by Google. The binary package contains a pre-compiled version of Snappy-Java and it is ready to use. You can follow these steps to download and install sna...
2023-01-06, 1493🔥, 2💬

💬 2023-01-06 ok: ok

User.java - Java Data Type Class Generated by XJC
How to read the Java code generated from XML Schema with XJC (XML to Java Compiler)? To read the Java code generated from XML Schema with XJC (XML to Java Compiler), you can simply open it in any Java code development tool, or just a text edit. For example, if you open the Java code, generated/User....
2018-05-08, 1493🔥, 0💬

jdk.jartool/sun.tools.jar.Main - "jar" Command
How to run "jar" command from JDK lib\modules JImage file? "jar" is the JAR (Java ARchive) file management command. "jar" command is supported by the jmods\jdk.jartool.jmod module file, which is also linked into the lib\modules JImage file in. You can run the "jar" command using the lib\modules JIma...
2020-02-07, 1486🔥, 0💬

jdk.jcmd/sun.tools.jcmd.JCmd - "jcmd" Command
How to run "jcmd" command from JDK lib\modules JImage file? "jcmd" command allows you to list all running JVM processes on your computer system and interact with them. "jcmd" command is supported by the jmods\jdk.jcmd.jmod module file, which is also linked into the lib\modules JImage file in. You ca...
2020-02-07, 1486🔥, 0💬

FOP TTFReader - Build Italic and Bold Fonts
How to build Italic, Bold and Italic-Bold fonts with FOP? To build Italic, Bold and Italic-Bold fonts with FOP, we need to find their fond files in TTF format. For example, you see "Calibri", Italic, Bold, and Italic-Bold font files located in \windows\fonts folder: 813,876 calibri.ttf &gt; for ...
2018-04-12, 1486🔥, 0💬

Using Apache XMLBeans in Java Programs
Where to find answers to frequently asked questions on Using Apache XMLBeans in Java Programs. Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Using Apache XMLBeans in Java Programs: xpretty - Print XML in Pretty Format easypo.xsd - Purchase Order Tes...
2018-01-13, 1477🔥, 0💬

<< < 88 89 90 91 92 93 94 95 96 97 98 > >>   Sort: Date