java格式化word文档_如何使用Java格式化word文档中的文本。(How to format the text in a word document using Java.)...

如何使用Java格式化word文档中的文本。(How to format the text in a word document using Java.)

问题描述 (Problem Description)

如何使用Java格式化word文档中的文本。

解决方案 (Solution)

以下是使用Java格式化word文档中的文本的程序。import java.io.File;

import java.io.FileOutputStream;

import org.apache.poi.xwpf.usermodel.VerticalAlign;

import org.apache.poi.xwpf.usermodel.XWPFDocument;

import org.apache.poi.xwpf.usermodel.XWPFParagraph;

import org.apache.poi.xwpf.usermodel.XWPFRun;

public class FormatTextInWord {

public static void main(String[] args)throws Exception {

//Blank Document

XWPFDocument document = new XWPFDocument();

//Write the Document in file system

FileOutputStream out = new FileOutputStream(new File("C:/poiword/fontstyle.docx"));

//create paragraph

XWPFParagraph paragraph = document.createParagraph();

//Set Bold an Italic

XWPFRun paragraphOneRunOne = paragraph.createRun();

paragraphOneRunOne.setBold(true);

paragraphOneRunOne.setItalic(true);

paragraphOneRunOne.setText("Font Style");

paragraphOneRunOne.addBreak();

//Set text Position

XWPFRun paragraphOneRunTwo = paragraph.createRun();

paragraphOneRunTwo.setText("Font Style two");

paragraphOneRunTwo.setTextPosition(100);

//Set Strike through and Font Size and Subscript

XWPFRun paragraphOneRunThree = paragraph.createRun();

paragraphOneRunThree.setStrike(true);

paragraphOneRunThree.setFontSize(20);

paragraphOneRunThree.setSubscript(VerticalAlign.SUBSCRIPT);

paragraphOneRunThree.setText(" Different Font Styles");

document.write(out);

out.close();

System.out.println("fontstyle.docx written successully");

}

}

输出 (Output)

a865e5a309c65a9d67a7278ca3e9f37f.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值