生成并返回docx文件给客户端
我有一个应用程序,可以根据用户输入生成 docx 文件。它使用 Apache POI 生成 docx 文件,我可以从中获取 FileOutputStream,当我将其写入文件时,该文档可以在本地计算机上完美打开。
Web 应用程序使用 Dojo xhrPost 将必要的数据发送到服务器以生成文档。我想知道如何将 docx 文件发送给客户端。
我知道我可以通过创建一个临时文件并将该文件的位置传递给客户端来下载,但我认为有一种方法可以通过将 FileOutputStream 直接传输到客户端来实现,这会更干净。
有什么建议吗?
I have an app that generates a docx file base on user input. It uses Apache POI to generate the docx file and I can get the FileOutputStream from that, the document opens perfectly on a local machine when I write it to a file.
The webapp is using Dojo xhrPost to send the necessary data to the server to generate the document. What I am wondering is how I get the docx file to the client.
I know I can do it be creating a temp file and passing the location of that file to the client to download, but I would think there would be a way to do it by piping the FileOutputStream straight to the client, which would be much cleaner.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Shiny 先生在这个 SO 问题中的答案有一个流式传输 excel 文件的示例,对于 docx 应该非常相似:
如何从 HSSFWorkbook 对象获取输入流
除了 docx 内容类型可能应该是 application/vnd.ms-word
The answer from Mr Shiny in this SO question has an example streaming an excel file, should be very similar for a docx:
How can I get an Input Stream from HSSFWorkbook Object
Except that a docx content type should, probably, be application/vnd.ms-word