Java 将图像添加到 BLOB 数据字段
对于我分配的这项大学作业。
我必须开发一个在 PDA 上使用的应用程序,该 PDA 以嵌入式模式运行 J2ME 和 Apache Derby。
我想将图像导入/导出到数据库。 我该怎么做? 将图像存储为 blob 是否合适?
For this university assignment that I have been assigned.
I have to develop an application for use on a PDA which is running J2ME and Apache Derby in embedded mode.
I would like to both import/export an image to the database. How would I do this? Also would storing the image as a blob be suitable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要从数据库检索和上传图像,您将需要 Derby JDBC 驱动程序。 阅读 Derby wiki 了解更多信息。
Blob 代表二进制大型对象,适合存储图像。
JDBC 教程
在 Java ME 平台上使用 Derby wiki 页面。
祝你好运。
To retrieve and upload your images from the database you will need the Derby JDBC driver. Read the Derby wiki for more info.
Blob stands for binary large object, and would be good to store an image in.
JDBC tutoiral
Using Derby on Java ME platforms wiki page.
Good Luck.