ODF工具包-铸造问题
我正在开发一个网络服务来使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决问题。它很有趣,但它不适用于 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.