Java导出Word文档(可设置字体)

原作者:兰博基尼
http://hujinfan.iteye.com/blog/847029

导出内容导Word文档中,可设置字体,亲测可用。

importjava.io.FileOutputStream;
import java.io.IOException;
import java.util.List;

importcom.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Element;
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;

 

public class WordUtil {
 private static Document document;
 private static BaseFont baseFont;

//创建word,并设置纸张文档

 private staticvoid openWordFile(String fileName) throws DocumentException,
   IOException{
  document = newDocument(PageSize.A4);
  RtfWriter2.getInstance(document,new FileOutputStream(fileName));
  document.open();
  baseFont =BaseFont.createFont();
 }

//设置标题

 private staticboolean setTitle(String title) throws DocumentException {
  Font font = new Font(baseFont,12, Font.BOLD);
  Paragraph pTitle = newParagraph(title + "\n");
  pTitle.setFont(font);
  pTitle.setAlignment(Element.ALIGN_CENTER);

  returndocument.add(pTitle);

 }

//设置文档内容

 private staticboolean setContent(String content) throws DocumentException {
  Font font = new Font(baseFont,10, Font.NORMAL);
  Paragraph pContent = newParagraph(content);
  pContent.setFont(font);
  pContent.setAlignment(Element.ALIGN_LEFT);
  pContent.setSpacingAfter(5);
  pContent.setFirstLineIndent(20);
  returndocument.add(pContent);
 }

//对外使用的接口

 public staticboolean CreateWordFile(String url, String title,
   Listcontents) {
  boolean returnValue =false;
  try {
   openWordFile(url);
   returnValue =setTitle(title);
   for (int i =0; i < contents.size(); i++) {
    returnValue= returnValue && setContent(contents.get(i));
   }
   document.close();
  } catch (DocumentException e){
   // TODOAuto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODOAuto-generated catch block
   e.printStackTrace();
  }

  returnreturnValue;

 }
 //对外使用的接口
 public static boolean CreateWordFile(String url,String title,
   Stringcontent) {
  boolean returnValue =false;
  try {
   openWordFile(url);
   returnValue =setTitle(title);
   returnValue =returnValue && setContent(content);
   document.close();
  } catch (DocumentException e){
   // TODOAuto-generated catch block
   e.printStackTrace();
  } catch (IOException e) {
   // TODOAuto-generated catch block
   e.printStackTrace();
  }

  returnreturnValue;

 }

public static void main(String[]args ) {
  WordUtil wordUtil = newWordUtil();
  List strList = newArrayList();

//传入内容为字符串
  wordUtil.CreateWordFile("e:\\word.doc","标题居中", "我爱Java");

//传入内容为字符串List
  //wordUtil.CreateWordFile("e:\\word.doc","标题居中", strList);
 }
}



需求jar包:
itext-rtf-2.1.7.jar
itext-2.1.7.jar
  • 0
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值