Docx4J 命令行将 doc/docx 文件转换为 html

发布于 2024-10-20 09:34:40 字数 1468 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-10-27 09:34:40

查看 http://dev.plutext.org/svn/docx4j /trunk/docx4j/docs/Docx4j_GettingStarted.html样本目录,我认为应该

java -cp docx4j.jar:log4j-1.2.15.jar org.docx4j.samples.CreateHtml [input.docx]

可以。请注意入门中的以下内容> 命令行示例部分:

如果 docx 中有任何图像,您还需要:

xmlgraphics-commons-1.4.jar
commons-logging-1.1.1.jar

在你的类路径上。

looking at http://dev.plutext.org/svn/docx4j/trunk/docx4j/docs/Docx4j_GettingStarted.html and the samples dir, i would think that

java -cp docx4j.jar:log4j-1.2.15.jar org.docx4j.samples.CreateHtml [input.docx]

should work. note the following from the Getting Started > Command Line Samples section:

If there are any images in the docx, you'd also need:

xmlgraphics-commons-1.4.jar
commons-logging-1.1.1.jar

on your classpath.

明月夜 2024-10-27 09:34:40

非常感谢 axe 提供了思路,但是该命令给出了类丢失错误,因此需要在路径中包含其他 jar 文件。

java -cp docx4j-2.6.0.jar:log4j-1.2.15.jar:xalan-2.7.1.jar:serializer-2.7.1.jar:xml-apis-1.3.04.jar:commons-logging-1.1.1.jar:commons-lang-2.4.jar:commons-io-1.3.1.jar:commons-codec-1.3.jar:xmlgraphics-commons-1.4.jar org.docx4j.samples.CreateHtml input.doc

Many thanks to ax for providing line of thought, but that command gave Class missing error so all was needed to include other jar files in path.

java -cp docx4j-2.6.0.jar:log4j-1.2.15.jar:xalan-2.7.1.jar:serializer-2.7.1.jar:xml-apis-1.3.04.jar:commons-logging-1.1.1.jar:commons-lang-2.4.jar:commons-io-1.3.1.jar:commons-codec-1.3.jar:xmlgraphics-commons-1.4.jar org.docx4j.samples.CreateHtml input.doc
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文