java使用itext生成PDF
程序员文章站
2022-04-19 20:25:10
...
1.导入itext的相关jar包及中文字体文件
相关链接:链接:https://pan.baidu.com/s/1-Em8tOJnIHU3jguRp9tLpw 密码:xf2y
2.代码实现
package com.util.pdf;
import java.awt.Color;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import com.itextpdf.text.BaseColor;
import com.itextpdf.text.Chapter;
import com.itextpdf.text.Document;
import com.itextpdf.text.DocumentException;
import com.itextpdf.text.Element;
import com.itextpdf.text.Font;
import com.itextpdf.text.PageSize;
import com.itextpdf.text.Paragraph;
import com.itextpdf.text.Section;
import com.itextpdf.text.pdf.BaseFont;
import com.itextpdf.text.pdf.PdfContentByte;
import com.itextpdf.text.pdf.PdfWriter;
public class PDFUtil {
public static void main(String args[]) throws FileNotFoundException, DocumentException {
BaseFont bf;
Font font = null;
Document document = new Document();
try {
//字体
String font_cn = getChineseFont();
bf = BaseFont.createFont(font_cn+",1", //注意这里有一个,1
BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);
font = new Font(bf,24);
//生成
PdfWriter.getInstance(document, new FileOutputStream("F:/cs/test.pdf"));
document.open();
Paragraph t = new Paragraph("你好,世界!", font);
t.setAlignment(1);
setAlignment(Element.ALIGN_CENTER);
// document.add(new Paragraph("hello word"));
document.add(t);
font = new Font(bf, 12);
t = new Paragraph("我爱我的世界", font);
t.setFirstLineIndent(24);
document.add(t);
document.close();
} catch (Exception e) {
e.printStackTrace();
}
System.out.println("导出成功");
}
private static void setAlignment(int alignCenter) {
// TODO Auto-generated method stub
}
//设置中文
private static String getChineseFont(){
//宋体(对应css中的 属性 font-family: SimSun; /*宋体*/)
String font1 ="src/font/simsun.ttc";
//判断系统类型,加载字体文件
java.util.Properties prop = System.getProperties();
String osName = prop.getProperty("os.name").toLowerCase();
System.out.println(osName);
if (osName.indexOf("linux")>-1) {
font1="/usr/share/fonts/simsun.ttc";
}
if(!new File(font1).exists()){
throw new RuntimeException("字体文件不存在,影响导出pdf中文显示!"+font1);
}
return font1;
}
}
以上代码笔者没有想到很好的封装,所以将使用方式写到了main方法里,大家可以根据自己的需求自行封装使用。
上一篇: php读取30天之内的根据算法排序的代码
下一篇: Python Queue模块