检索在 MYSQL DB 上存储为 BLOB 的图像
我正在尝试根据数据库中的信息创建 PDF。我知道我需要从 Java 检索以 BLOB 形式存储在 mysql 数据库上的 TIFF 图像。我不知道该怎么做。我找到的示例展示了如何检索它并将其保存为文件(但在磁盘上),并且我需要驻留在内存中。
表名称:IMAGENES_REGISTROS
BLOB 字段名称:IMAGEN
有什么想法吗?
I'm trying to create a PDF based on the information that resides on a database. Know I need to retrieve a TIFF image that is stored as a BLOB on a mysql database from Java. And I don't know how to do it. The examples I've found shows how to retrieve it and save it as a File (but on disk) and I needed to reside on memory.
Table name: IMAGENES_REGISTROS
BLOB Field name: IMAGEN
Any Ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在您的
ResultSet
调用中:或者,您可以调用:
正如 BalusC 在他的评论中指出的那样,您最好使用:
然后代码取决于您将如何读取和嵌入图像。
On your
ResultSet
call:Alternatively, you can call:
As BalusC noted in his comment, you'd better use:
And then the code depends on how you are going to read and embed the image.
尝试使用此代码从 netbeans 中的博客 Mysql 获取可调整的图像
Try this code to get adjustable image from blog Mysql in netbeans