ODF工具包-铸造问题

发布于 2024-11-26 13:12:48 字数 521 浏览 2 评论 0原文

我正在开发一个网络服务来使用 odf 工具包创建 odt 文档。我确实使用下面的代码创建了一个新文档,但出现了转换错误。你觉得怎么样?如何创建格式化(彩色等)文本?谢谢

我的代码只是

    try
{
    TextDocument outputOdt=TextDocument.newTextDocument();
    outputOdt.save("C:\\Users\\TheIntersect\\Documents\\NetBeansProjects\\webWord\\web\\Documents\\docx\\quick.odt");
    return "Succesfull";
}
catch (Exception e)
{
    return e.getMessage();
}

错误

org.odftoolkit.odfdom.pkg.OdfAlienElement 无法转换为 org.odftoolkit.odfdom.dom.meta.MetaInitialCreatorElement

I am developing a webservice to create an odt document with odf toolkit. I did use below code to create a new document but i am getting an casting error. What o you think about it? How can i create formatted(colored etc) text? Thanks

My Code Just

    try
{
    TextDocument outputOdt=TextDocument.newTextDocument();
    outputOdt.save("C:\\Users\\TheIntersect\\Documents\\NetBeansProjects\\webWord\\web\\Documents\\docx\\quick.odt");
    return "Succesfull";
}
catch (Exception e)
{
    return e.getMessage();
}

Error

org.odftoolkit.odfdom.pkg.OdfAlienElement cannot be cast to org.odftoolkit.odfdom.dom.meta.MetaInitialCreatorElement

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

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

发布评论

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

评论(1

屋顶上的小猫咪 2024-12-03 13:12:48

我解决问题。它很有趣,但它不适用于 Win7 和 jdk6。它适用于 JDK7 和 Win7。它也可以与 WinXp 一起使用 jdk6。

I solve the problem. It is interesting but it is not working with Win7 and jdk6. It works with JDK7 and Win7. It also works jdk6 with WinXp.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文