[code="java"][/code]package Test;
import java.awt.Color;
import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.Font;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.BaseFont;
import com.lowagie.text.rtf.RtfWriter2;
//使用iText方法
public class Main {
public static void main(String[] args){
try{
BaseFont font1= BaseFont.createFont("c:\\windows\\fonts\\simhei.ttf",BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);//设置字体类型
Font font=new Font(font1,14,Font.BOLD,Color.BLACK);//黑体14号,加粗
Document document=new Document(PageSize.A4);//页面大小
RtfWriter2.getInstance(document, new FileOutputStream("F:\\test.doc"));//输出路径
document.open();
Paragraph title=new Paragraph("你好 美女",font);//设置标题
title.setAlignment(Paragraph.ALIGN_CENTER);//标题居中
document.add(title);//添加标题
document.close();
}catch(Exception e){
System.out.println(e.getMessage());
}
}
}
将附件中的3个jar包添加到工程中就可以使用了
import java.awt.Color;
import java.io.FileOutputStream;
import com.lowagie.text.Document;
import com.lowagie.text.Font;
import com.lowagie.text.PageSize;
import com.lowagie.text.Paragraph;
import com.lowagie.text.pdf.BaseFont;
import com.lowagie.text.rtf.RtfWriter2;
//使用iText方法
public class Main {
public static void main(String[] args){
try{
BaseFont font1= BaseFont.createFont("c:\\windows\\fonts\\simhei.ttf",BaseFont.IDENTITY_H, BaseFont.NOT_EMBEDDED);//设置字体类型
Font font=new Font(font1,14,Font.BOLD,Color.BLACK);//黑体14号,加粗
Document document=new Document(PageSize.A4);//页面大小
RtfWriter2.getInstance(document, new FileOutputStream("F:\\test.doc"));//输出路径
document.open();
Paragraph title=new Paragraph("你好 美女",font);//设置标题
title.setAlignment(Paragraph.ALIGN_CENTER);//标题居中
document.add(title);//添加标题
document.close();
}catch(Exception e){
System.out.println(e.getMessage());
}
}
}
将附件中的3个jar包添加到工程中就可以使用了