Java学习笔记:Word文档的读写

Java学习笔记:Word文档的读写_第1张图片

不变样式就是run,段落是XWPFParagraph

Java学习笔记:Word文档的读写_第2张图片

static org.apache.poi.xwpf.usermodel.XWPFPicture addPicture(org.apache.poi.xwpf.usermodel.XWPFDocument doc, byte[] pictureData)

向Word文档对象doc中增加一张图片,用图片的默认尺寸显示。

static org.apache.poi.xwpf.usermodel.XWPFPicture addPicture(org.apache.poi.xwpf.usermodel.XWPFDocument doc, byte[] pictureData, int width, int height)

向Word文档对象doc中增加一张图片,图片的显示尺寸为width、height。

static org.apache.poi.xwpf.usermodel.XWPFPicture addPicture(org.apache.poi.xwpf.usermodel.XWPFRun run, byte[] pictureData)

向XWPFRun对象doc中增加一张图片,用图片的默认尺寸显示。

static org.apache.poi.xwpf.usermodel.XWPFPicture addPicture(org.apache.poi.xwpf.usermodel.XWPFRun run, byte[] pictureData, int width, int height)

向XWPFRun对象中增加一张图片,图片的显示尺寸为width、height。

static org.apache.poi.xwpf.usermodel.XWPFDocument clone(org.apache.poi.xwpf.usermodel.XWPFDocument document)

创建document的一个副本。

static void close(org.apache.poi.ooxml.POIXMLDocument doc)

关闭Word对象。

static org.apache.poi.xwpf.usermodel.XWPFChart createChart(org.apache.poi.xwpf.usermodel.XWPFDocument doc, int width, int height)

在doc中添加一个尺寸为(width,height)的图表对象,XWPFChart类型。

static org.apache.poi.xwpf.usermodel.XWPFDocument createDocxDocument()

创建XWPFDocument类型(*.docx格式)的Word内存对象。

static org.apache.poi.xwpf.usermodel.XWPFRun createRun(org.apache.poi.xwpf.usermodel.XWPFDocument doc, String text)

创建一个XWPFRun对象,文本内容为text,左对齐。

static org.apache.poi.xwpf.usermodel.XWPFRun createRun(org.apache.poi.xwpf.usermodel.XWPFDocument doc, String text, org.apache.poi.xwpf.usermodel.ParagraphAlignment alignment)

创建一个XWPFRun对象,文本内容为text,对齐方式为alignment。

static void forEachRun(org.apache.poi.xwpf.usermodel.XWPFTableCell cell, java.util.function.Consumer action)

对于cell这个格的每个XWPFRun调用action这个lambda方法。

static org.apache.poi.xwpf.usermodel.XWPFDocument openDocx(byte[] bytes)

从byte[]中打开*.docx格式的Word文档的XWPFDocument对象。

static org.apache.poi.xwpf.usermodel.XWPFDocument openDocx(File file)

打开*.docx格式的Word文档的XWPFDocument对象。

static org.apache.poi.xwpf.usermodel.XWPFDocument openDocx(InputStream inputStream)

从inputStream中打开*.docx格式的Word文档的XWPFDocument对象。

static org.apache.poi.xwpf.usermodel.XWPFDocument openDocx(String file)

打开*.docx格式的Word文档的XWPFDocument对象。

static String readAllText(File file)

读取word文档file中的全部文本。

static String readAllText(InputStream inStream)

读取inStream中word文档的全部文本。

static String readAllText(String filename)

读取word文档filename中的全部文本。

static void saveToFile(org.apache.poi.xwpf.usermodel.XWPFDocument doc, File file)

把XWPFDocument对象代表的word文档保存到file文件中。

static void saveToFile(org.apache.poi.xwpf.usermodel.XWPFDocument doc, String filename)

把XWPFDocument对象代表的word文档保存到filename文件中。

static org.apache.poi.xwpf.usermodel.XWPFTableCell setTableCellValue(org.apache.poi.xwpf.usermodel.XWPFTable table, int rowNum, int colNum, Object value)

设置table表格的第rowNum行的第colNum列的单元格的值为value。

static byte[] toByteArray(org.apache.poi.xwpf.usermodel.XWPFDocument doc)

获取Word对象的word文档的byte数组内容。

String s=WordHelpers.readAllText("D:\\\\temp\\\\1/参考碳路者--1.20会议内容.docx");//读Word文件
System.out.println(s);

Java学习笔记:Word文档的读写_第3张图片

 快捷键ctrl+F12,可以找到类中的所有成员

Java学习笔记:Word文档的读写_第4张图片

Java学习笔记:Word文档的读写_第5张图片 

package Part4;

import com.yzk18.commons.IOHelpers;
import com.yzk18.docs.WordHelpers;
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFPicture;
import org.apache.poi.xwpf.usermodel.XWPFPictureData;

public class 读取Word文件 {
    public static void main(String[] args) {
        XWPFDocument doc = WordHelpers.openDocx("D:\\temp\\1/参考碳路者--1.20会议内容.docx");
        String s=WordHelpers.readAllText("D:\\\\temp\\\\1/参考碳路者--1.20会议内容.docx");//读Word文件
        System.out.println(s);
        for (XWPFPictureData pic : doc.getAllPictures())
        {
            IOHelpers.writeAllBytes("d:/temp/pics/"+pic.getFileName(),pic.getData());
        }
        WordHelpers.close(doc);
    }
}

Java学习笔记:Word文档的读写_第6张图片 

 

你可能感兴趣的:(零基础玩java,java,开发语言,后端)