本文介绍了如何使用POI API来编辑现有的Word文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用:

XWPFDocument文档=新XWPFDocument();

XWPFDocument document = new XWPFDocument();

我如何分配它,如果它已经存在,它不会覆盖该文件?

How do I assign it so it doesn't overwrite the file if it already exists?

推荐答案

下面将创建一个全新的,空的XWPF Word文档与工作:

The following will create a brand new, empty XWPF Word Document to work with:

XWPFDocument document = new XWPFDocument();

而这将打开一个现有的编辑:

Whereas this will open up an existing one for editing:

XWPFDocument document = new XWPFDocument(OPCPackage.open("MyFile.docx"));

或者,如果你有一个的InputStream ,而不是一个文件:

XWPFDocument document = new XWPFDocument(inputStream);

这篇关于如何使用POI API来编辑现有的Word文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-01 13:49