如何将文件从 MySQL BLOB 下载发送给最终用户?
如何将文件作为下载发送给最终用户?我已经实现了一个页面的表单提交,其中包含一列数据作为数据库的会话。这一列包括一个在 MySQL 数据库中以 BLOB 形式保存的文件。
当处理 actionforward 并使用带有 CV 的表的映射文件时,我可以通过 cv.getFileContent()
访问文件内容。我必须将数据逐字节发送给用户吗?如何提供文件下载?
How can I send a file as download to the enduser? I have implemented a form submission of a page with a column of data as session of the DB. This column includes one file which is saved as BLOB in a MySQL database.
When handling actionforward and using the mapping file for a table with CV's, I can access the file content by cv.getFileContent()
. Do I have to send the data byte by byte to the user? How do I offer the file as a download?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用 servlet 作为下载机制。
使用 Get 或 Post 将表单提交到 Servlet,然后在 Servlet 类中相应地实现 doGet 或 doPost。
使用 Hibernate 将列作为字节数组获取。
希望有帮助。
更新:
这就是我映射
byte[]
的方式。You should use servlet as download mechanism.
Submit your form to Servlet using Get or Post,then in Servlet Class implement doGet or doPost accordingly.
Using Hibernate fetch the column as byte Array.
Hope it helps.
Update:
This is how I mapped the
byte[]
.