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

Default Data Type Mapping of XML Schema and Java
What is the Default Data Type Mapping of XML Schema and Java defined in JAXB API? Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java classes to XML representations. The JAXB 2.2 release defines the following default mapping between XML Schema data types an...
2018-05-19, 983🔥, 0💬

avalon-framework-4.2.0.jar - Apache Avalon 4.2.0
Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the Apache Jakarta Project to become its own ASF top level project. By 2004 Avalon is closed and replaced several sub projects. JAR File Size and Download Location: File name: avalon-framework.jar, avalon...
2018-05-17, 26569🔥, 2💬

XJC -p Option for Class Package Name
How to specify the package name for the generated Java classes with XJC (XML to Java Compiler)? I don't like the default package name "generated". I don't like the default package name "generated" of the output Java classes given by XJC (XML to Java Compiler), you can change it by using the "xjc -p"...
2018-05-08, 2839🔥, 0💬

MyUserObject.java - Create Object from Data Type Class
How to create data objects from data type classes generated from the JAXB XJC tool? I have the User.java generated from User.xsd. If you have the User.java class generated as in the previous tutorial, you can follow this tutorial to create User data objects in your XML application. 1. Enter the foll...
2018-05-08, 1618🔥, 0💬

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

Generate Java Code from XML Schema with XJC
How to generate Java code from XML Schema with XJC (XML to Java Compiler)? If you have an XML Schema, you can create Java code to represent complex XML elements as Java classes manually according to mapping rules given in the JAXB API specification. But you can also using the XJC (XML to Java Compil...
2018-05-08, 1143🔥, 0💬

Identify JAXB Implementation Classes
How to Identify JAXB Implementation Classes? You can use the following simple Java program, JaxbClassInfo.java, to Identify JAXB Implementation Classes: // Copyright (c) FYIcenter.com import javax.xml.bind.JAXBContext; import javax.xml.bind.Marshaller; public class JaxbClassInfo { public static void...
2018-05-08, 993🔥, 0💬

Call FOP with Debug Logging
How to turn on debug logging when running the FOP command? I want to get more information to troubleshoot a problem with my FO file. If want to turn on debug logging when running the FOP command to help troubleshooting FO file issues, you can follow this tutorial. 1. Modify the fop.bat file to turn ...
2018-04-28, 3224🔥, 0💬

XSLT Process in fop-2.7-bin.zip
How to run the XSLT process in fop-2.7-bin.zip transform XML files using XSLT templates? which can be used to perform an XSLT process to transform an XML file using XSLT template. The XSLT process reads an XML file and an XSLT file. The output is what ever the XSLT file wants to generate. See the se...
2018-04-28, 1667🔥, 0💬

Managing Fonts in FOP PDF Output
Where to find answers to frequently asked questions on Managing Fonts in FOP PDF Output? Here is a list of frequently asked questions and their answers compiled by FYIcenter.com team on Managing Fonts in FOP PDF Output: The Default Font used by FOP What Are FOP Generic Font Families FOP Base-14 Font...
2018-04-28, 1480🔥, 0💬

"FOP -awt" - Generate Output on Screen
How to use "FOP -awt" option to generate output on the screen? If you want to display output on the screen instead of PDF files, you can use the "FOP -awt" command option. Here is how to do this: fyicenter&gt; cd \local\fop-2.x\fop fyicenter&gt; fop -awt examples\fo\basic\fonts.fo org.apache...
2018-04-28, 1241🔥, 0💬

Transform XML to FO and Generate PDF with FOP
How to transform XML to FO and generate PDF with FOP? FOP allows you to transform XML to FO and generate PDF output with a single command. Here is how to do this: fyicenter&gt; cd \local\fop-2.x\fop fyicenter&gt; fop -xml examples\embedding\xml\xml\pro jectteam.xml-xsl examples\embedding\xml...
2018-04-28, 1232🔥, 0💬

FOP Missing Font Error for PDF
Why I am getting the "Font Calibri,normal,400 not found. Substituting with any,normal,400" error with FOP? FOP has built-in definitions only for generic fonts: serif, sans-serif, monospace, and Base-14 fonts: Helvetica, Times, Courier, Symbol, ZapfDingbats. If you are using a font that has not built...
2018-04-21, 3040🔥, 0💬

FOP Font Missing Glyph Error for PDF
Why I am getting the "Glyph A not available in font Symbol" error with FOP? You will get the "Glyph A not available in font X" error, if character "A" is not supported in font "X". For example, font "Symbol" only support symbolic characters. It does not support alphabetic characters. So if you apply...
2018-04-21, 2448🔥, 0💬

FOP Base-14 Fonts for PDF
What are Base-14 fonts supported in FOP for PDF? FOP supports Base-14 fonts (required by all PDF viewers) for PDF output: 4 fonts for Helvetica family: normal, bold, italic, bold italic. 4 fonts for Times family: normal, bold, italic, bold italic. 4 fonts for Courier family: normal, bold, italic, bo...
2018-04-21, 1983🔥, 0💬

The Default Font used by FOP
What is the default font used by FOP to generate PDF output? The default font used by FOP to generate PDF output is the Helvetica font. Here is how you can verify this: 1. Create a FO file, fyicenter.fo, without specify any font: &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;!-- fyice...
2018-04-21, 1835🔥, 0💬

What Are FOP Generic Font Families
What are generic font families used in FOP? FOP supports 3 generic font families: "serif" - Generic font family for Times, Times Roman, and similar fonts. "sans-serif" - Generic font family for Helvetica, Arial, and similar fonts. "monospace" - Generic font family for Courier, New Courier, and simil...
2018-04-21, 1693🔥, 0💬

Define Your Own Font in FOP cfg.xml
How to provide my own font definitions for FOP to generate PDF files? I have my font definition created in an XML file. If you have your font definition files generated as shown in the previous tutorial, you can provide them to FOP command through a configuration XML file. First, build the configura...
2018-04-12, 2328🔥, 0💬

FontView.exe - Preview Font Glyphs on Windows
How to preview font glyphs on Windows? I want to see how they look like, before deciding to use the font. On Windows computers, you can run the "FontView.exe" program to preview glyphs of any font file. For example, you can run this command to view glyphs in the Calibri Italic font: \fyicenter&g...
2018-04-12, 2269🔥, 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, 2107🔥, 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, 1745🔥, 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, 1345🔥, 0💬

iText io.jar Source Code
io.jar is a component in iText Java library to provide input/output functionalities. iText Java library allows you to generate and manage PDF documents. The Source Code files are provided together with the JAR file in the binary packge like iText7-Core-7.1.4.zip. You can download it at iText 7 Core ...
2018-04-09, 91922🔥, 5💬

💬 2018-04-09 youjundong_12: 相当不错,看看

💬 2016-11-20 Vadim: itext

💬 2016-04-08 gokul: itext

(More comments ...)

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💬

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