java中利用itext.jar生成word文档

本文介绍如何利用Java和iText库生成包含中文内容及自定义页眉页脚的RTF格式文档。通过创建Document对象并设置页面大小,使用RtfWriter2进行写操作。此外,还演示了如何设置中文字体和添加文本内容。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

import java.io.FileOutputStream;
import java.io.IOException;

import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Font;
import com.lowagie.text.HeaderFooter;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Phrase;
import com.lowagie.text.Rectangle;
import com.lowagie.text.pdf.BaseFont;
import com.lowagie.text.rtf.RtfWriter2;


public class Rules {
public static void main(String[] args) throws DocumentException, IOException {
Document document = new Document(PageSize.A4);
RtfWriter2.getInstance(document, new FileOutputStream("e:/1.doc"));
document.open();

// 添加页眉
HeaderFooter header = new HeaderFooter(new Phrase("header"), false);
header.setAlignment(Rectangle.ALIGN_CENTER);
document.setHeader(header);


// 添加页脚
HeaderFooter footer = new HeaderFooter(new Phrase("footer"), false);
footer.setAlignment(Rectangle.ALIGN_CENTER);
document.setFooter(footer);


// 设置中文字体
BaseFont bfChinese = BaseFont.createFont("STSongStd-Light","UniGB-UCS2-H", BaseFont.NOT_EMBEDDED);
Font contextFont = new Font(bfChinese, 10, Font.NORMAL);
Paragraph context = new Paragraph("");
context.setFont(contextFont);
//Image png = Image.getInstance("D:/busy.gif");
//png.setAbsolutePosition(0, 0);
//png.setAlignment(Image.TEXTWRAP);

context.add("内容1");
//context.add(new Phrase(new Chunk(png, 0, 0, true)));
context.add("内容2");
//context.add(new Phrase(new Chunk(png, 0, 0, true)));
context.add("内容3");
document.add(context);
document.close();
}

}

原帖地址:http://housen1987.iteye.com/blog/1335036

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值