在 Android 应用程序中创建 MS Word 文档
我正在开发一个 Android 应用程序的客户端项目,想要确认设计的解决方案是否使用了最合适的技术和资源。
该应用程序通过一系列问题从用户那里收集数据,将数据编译成单个人类可读的文档,然后通过电子邮件发送该文档。我的客户要求交付的文档采用 MS Word 格式。我目前正在使用 xml 在应用程序中构建我的文档,将扩展名类型设置为“.doc”,然后发送。由于最新版本的 MS Word 似乎在处理这些类型的文件时没有问题,因此这似乎是最合适的解决方案。
我有什么明显遗漏的东西吗?我应该以另一种方式处理这个问题吗?
I am working on a client project for an android app and wanted to confirm if the designed solution appears to be utilizing the most appropriate technology and resources.
The application gathers data from the user via a series of questions, compiles the data into a single human-readable document, then sends the document out via email. My client requires the delivered doc to be in MS Word format. I am currently building my doc in the app using xml, setting the extension type as ".doc", then sending. Since the latest versions of MS Word seem to have no problem handling these types of files, this seems to be the most appropriate solution.
Is there anything obvious that I am missing? Should I be handling this another way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有正确编写 DOC 文件。如果确实需要保存 .DOC 文件,我建议您阅读 此 .pdf 关于 thd DOC 文件格式由 OpenOffice 团队开发。
由于您已经在使用 XML 编写文件,请考虑使用 Microsoft 的 Office XML 格式,而不是将 XML 写入.DOC 文件。
You aren't writing DOC files correctly. If really need to save .DOC files I suggest you read this .pdf regarding thd DOC file format put out by the OpenOffice team.
As you are already writing the file in XML consider using Microsoft's Office XML format instead of writing the XML to a .DOC file.