gpt4 book ai didi

java - 如何使用 java 以编程方式创建 odt 文件?

转载 作者:IT老高 更新时间:2023-10-28 20:34:45 25 4
gpt4 key购买 nike

如何以编程方式使用 Java 创建 odt (LibreOffice/OpenOffice Writer) 文件?一个“hello world”的例子就足够了。我查看了 OpenOffice 网站,但文档不清楚。

最佳答案

看看ODFDOM - the OpenDocument API

ODFDOM is a free OpenDocument Format (ODF) library. Its purpose is to provide an easy common way to create, access and manipulate ODF files, without requiring detailed knowledge of the ODF specification. It is designed to provide the ODF developer community with an easy lightwork programming API portable to any object-oriented language.

The current reference implementation is written in Java.

// Create a text document from a standard template (empty documents within the JAR)
OdfTextDocument odt = OdfTextDocument.newTextDocument();

// Append text to the end of the document.
odt.addText("This is my very first ODF test");

// Save document
odt.save("MyFilename.odt");

稍后

在撰写本文时(2016 年 2 月),我们被告知这些类已被弃用……很重要,OdfTextDocument API 文档告诉您:

As of release 0.8.8, replaced by org.odftoolkit.simple.TextDocument in Simple API.

这意味着您仍然在项目中包含相同的 Activity .jar 文件,simple-odf-0.8.1-incubating-jar-with-dependencies.jar,但您想解压以下 .jar 获取文档:simple-odf-0.8.1-incubating-javadoc.jar,而不是 odfdom-java-0.8.10-incubating-javadoc.jar.

顺便说一句,文档链接在 .zip 中下载了一堆 jar 文件,上面写着“0.6.1”......但里面的大部分内容似乎更像 0.8.1。我不知道为什么他们在“已弃用”类的文档中说“截至 0.8.8”:几乎所有内容都已标记为已弃用。

与上面等效的简单代码是:

odt_doc = org.odftoolkit.simple.TextDocument.newTextDocument()
para = odt_doc.getParagraphByIndex( 0, False )
para.appendTextContent( 'stuff and nonsense' )
odt_doc.save( 'mySpankingNewFile.odt' )

PS 正在使用 Jython,但 Java 应该很明显。

关于java - 如何使用 java 以编程方式创建 odt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4791389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com