iText中输出 中文
iText中输出中文,有三种方式:
1、使用iTextAsian.jar中的字体
BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",BaseFont.NOT_EMBEDDED);
2、使用Windows系统字体(TrueType)
BaseFont.createFont("C:/WINDOWS/Fonts/SIMYOU.TTF", BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);
3、使用资源字体(ClassPath)
BaseFont.createFont("/SIMYOU.TTF", BaseFont.IDENTITY_H,BaseFont.NOT_EMBEDDED);
第2、三种方式使用的字体多一些,但是需要和实际资源绑定,在实际项目中可以将一些字体库和项目打包在一起,下面我们以iTextAsian中自带的字体为例说明如何输出中文:
- BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H",
- BaseFont.NOT_EMBEDDED);
- Font FontChinese = new Font(bfChinese, 12, Font.NORMAL);
- document.add(new Paragraph(" 产生的报告",FontChinese));
一个完整的例子:
- /*
- * $Id: RepeatingTable.java,v 1.5 2005/05/09 11:52:47 blowagie Exp $
- * $Name: $
- *
- * This code is part of the 'iText Tutorial'.
- * You can find the complete tutorial at the following address:
- * http://itextdocs.lowagie.com/tutorial/
- *
- * This code is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * itext-questions@lists.sourceforge.net
- */
- package com.lowagie.examples.objects.tables.alternatives;
- import java.awt.Color;
- import java.io.File;
- import java.io.FileOutputStream;
- import java.util.Date;
- import com.lowagie.text.Cell;
- import com.lowagie.text.Document;
- import com.lowagie.text.Element;
- import com.lowagie.text.Font;
- import com.lowagie.text.FontFactory;
- import com.lowagie.text.PageSize;
- import com.lowagie.text.Paragraph;
- import com.lowagie.text.Phrase;
- import com.lowagie.text.Rectangle;
- import com.lowagie.text.Table;
- import com.lowagie.text.pdf.BaseFont;
- import com.lowagie.text.pdf.PdfWriter;
- /**
- * Shows how a table is split if it doesn't fit the page.
- */
- public class RepeatingTable {
- /**
- * Shows how a table is split if it doesn't fit the page.
- *
- * @param args
- * no arguments needed
- */
- public static void main(String[] args) {
- System.out.println("table splitting");
- // creation of the document with a certain size and certain margins
- Document document = new Document(PageSize.A4.rotate(), 50, 50, 50, 50);
- try {
- // creation of the different writers
- String filePath = "d:" + File.separator + "temp" + File.separator
- + "iText_Generated_pdf" + File.separator + "table"
- + File.separator;
- File file = new File(filePath);
- if (!file.exists()) {
- file.mkdirs();
- }
- PdfWriter.getInstance(document, new FileOutputStream(filePath
- + "repeatingtable.pdf"));
- // we add some meta information to the document
- document.addAuthor("chenzwei@cn.ibm.com,CTE WAC,GBSC,CDL,IBM");
- document.addSubject("This is a sample of iText in CTE.");
- document.open();
- Table datatable = new Table(10);
- int headerwidths[] = { 10, 24, 12, 12, 7, 7, 7, 7, 7, 7 };
- datatable.setWidths(headerwidths);
- datatable.setWidth(100);
- datatable.setPadding(3);
- // the first cell spans 10 columns
- Cell cell = new Cell(new Phrase(
- "Administration -System Users Report", FontFactory.getFont(
- FontFactory.HELVETICA, 24, Font.BOLD)));
- cell.setHorizontalAlignment(Element.ALIGN_CENTER);
- cell.setLeading(30);
- cell.setColspan(10);
- cell.setBorder(Rectangle.NO_BORDER);
- cell.setBackgroundColor(new Color(0xC0, 0xC0, 0xC0));
- datatable.addCell(cell);
- // These cells span 2 rows
- datatable.setBorderWidth(2);
- datatable.setAlignment(1);
- datatable.addCell("User Id");
- datatable.addCell("Name\nAddress");
- datatable.addCell("Company");
- datatable.addCell("Department");
- datatable.addCell("Admin");
- datatable.addCell("Data");
- datatable.addCell("Expl");
- datatable.addCell("Prod");
- datatable.addCell("Proj");
- datatable.addCell("Online");
- // this is the end of the table header
- datatable.endHeaders();
- datatable.setBorderWidth(1);
- for (int i = 1; i < 30; i++) {
- datatable.setAlignment(Element.ALIGN_LEFT);
- datatable.addCell("myUserId");
- datatable
- .addCell("Somebody with a very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very, very long long name");
- datatable.addCell("No Name Company");
- datatable.addCell("D" + i);
- datatable.setAlignment(Element.ALIGN_CENTER);
- datatable.addCell("No");
- datatable.addCell("Yes");
- datatable.addCell("No");
- datatable.addCell("Yes");
- datatable.addCell("No");
- datatable.addCell("Yes");
- }
- BaseFont bfChinese = BaseFont.createFont("STSong-Light", "UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
- Font FontChinese = new Font(bfChinese, 12, Font.NORMAL);
- document.add(new Paragraph(" 产生的报告",FontChinese));
- document.add(datatable);
- document.newPage();
- document.add(new Paragraph(
- "com.lowagie.text.pdf.PdfPTable - Cells split\n\n"));
- datatable.setConvert2pdfptable(true);
- document.add(datatable);
- document.newPage();
- document.add(new Paragraph(
- "com.lowagie.text.Table - Cells kept together"));
- datatable.setConvert2pdfptable(false);
- datatable.setCellsFitPage(true);
- document.add(datatable);
- document.newPage();
- document
- .add(new Paragraph(
- "com.lowagie.text.pdf.PdfPTable - Cells kept together\n\n"));
- datatable.setConvert2pdfptable(true);
- document.add(datatable);
- } catch (Exception e) {
- e.printStackTrace();
- }
- // we close the document
- document.close();
- }
- }
附录:
http://www.lowagie.com/iText/tutorial/index.html (iText教程) http://www.lowagie.com/iText/download.html (iText核心包文件) http://sourceforge.net/project/showfiles.php?group_id=15255&release_id=167948 (iTextArea 包文件)
iText中输出 中文的更多相关文章
- iText中输出中文
原文链接 http://hintcnuie.iteye.com/blog/183690 转载内容 iText中输出中文,有三种方式: 1.使用iTextAsian.jar中的字体 BaseFont.c ...
- 关于Python中输出中文的一点疑问
#encoding=gb2312 import urllib import re def getHtml(url): page = urllib.urlopen(url) html = page.re ...
- scrapy中输出中文保存中文
1.json文件中文解码: #!/usr/bin/python #coding=utf-8 #author=dahu import json with open('huxiu.json','r') a ...
- C++输出中文字符(转)
C++输出中文字符 1. cout 场景1: 在源文件中定义 const char* str = "中文" 在 VC++ 编译器上,由于Windows环境用 GBK编码,所以字符串 ...
- java web中请求和响应中包含中文出现乱码解析
说明:在计算机中保存的一切文本信息是以一定的编码表(0,1,0,1)来保存我们所认识的字符(汉字或英文字符),由字符到计算机存储的二进制过程是编码,由读取二进制到文本的过程称为解码.而字符编码有多种不 ...
- 在Servlet中出现一个输出中文乱码的问题(已经解)。
在Servlet中出现一个输出中文乱码的问题,已经解. @Override public void doPost(HttpServletRequest reqeust, HttpServletResp ...
- Python源码文件中带有中文时,输出乱码
Python源码文件中带有中文时,文件头应加注释: #!/usr/bin/env python # -*- coding: utf-8 -*- 第一行注释是为了告诉Linux/OS X系统,这是一个P ...
- 【C++】解决c++中cout输出中文乱码问题
问题:cout输出中文乱码.例如下面的代码输出会乱码. cout << "成功!" << endl; 输出结果: 解决方案: 控制台还原旧版即可,打开程序- ...
- asp.net core输出中文乱码的问题
摘要 在学习asp.net core的时候,尝试在控制台,或者页面上输出中文,会出现乱码的问题. 问题重现 新建控制台和站点 public class Program { public static ...
随机推荐
- WEB项目构建优化之自动清除CSS中的图片缓存
在web项目构建发布时,经常遇到css中图片的修改优化,那么如何清除图片的缓存成为必须要解决的问题.曾经有过傻傻的方法就是直接在图片后面添加随机数.今天主要是从构建自动化方式来解决这个问题,提高开发及 ...
- Centos7 部署.netCore2.0项目
最近在学习.netCore2.0,学习了在Centos上部署.netCore的方法,中间遇到过坑,特意贴出来供大家分享,在此我只是简单的在CentOS上运行.NETCore网站,没有运用到nginx等 ...
- js运动缓动效果
http://www.cnblogs.com/hongru/archive/2012/03/16/2394332.html 转分享地址
- 数据结构(二) --- 伸展树(Splay Tree)
文章图片和代码来自邓俊辉老师课件 概述 伸展树(Splay Tree),也叫分裂树,是一种二叉排序树,它能在O(log n)内完成插入.查找和删除操作.它由丹尼尔·斯立特Daniel Sleator ...
- unable to retrieve metadata
在使用Scaffolding模板生成的时候,抛出了这个一个错误unable to retrieve metadata找了一下bug,居然是因为自己的数据库连接字符串,把它注释后,就可以运行了,我推测, ...
- 一个对inner jion ...on 的sql多表联合查询的练习
create database practiceSql; use practiceSql; -- create table student( `id` bigint not null auto_inc ...
- java unsupported major.minor version 51.0 解决
1.概述 出现如题所述异常 是因为jdk高版本 编译后的class文件 运行在低版本的jre环境下(如jdk7编译 运行在jdk6环境下) 2. 解决方案 在eclipse等ide中重新编译 指定编译 ...
- 洛谷P1600 天天爱跑步(差分 LCA 桶)
题意 题目链接 Sol 一步一步的来考虑 \(25 \%\):直接\(O(nm)\)的暴力 链的情况:维护两个差分数组,分别表示从左向右和从右向左的贡献, \(S_i = 1\):统计每个点的子树内有 ...
- JavaScript String对象常用方法
length 返回字符串的长度(字符数) var str='Hello World!'; str.length; charAt() 返回指定位置的字符,第一个字符位置为0 var str='Hello ...
- ef使用dbfirst方式连接mysql
1.安装 mysql connector net 6.9.9 https://dev.mysql.com/downloads/file/?id=463758 和mysql for visual st ...