Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 SQL 适配器将图像作为 blob 类型上传到数据库,而且我还需要知道如何从 SQL 适配器获取 blob 数据。请您帮助我通过 SQL 适配器插入和检索 blob 数据。
取自旧论坛帖子:
这是我的想法。 在您的应用服务器中编写一个 servlet 或任何等效项。在 servlet 中,您从 DB 中获取图像。 根据 BASE64 对图像二进制内容进行编码。 返回图片的base64字符串。 编写一个 HTTP Adapter 来访问您刚刚编写的 servlet。 在您的客户端应用程序中,您可以通过将“src”属性设置为某个值(例如“data:charset=some_charset,”)将图像插入到 a 中。例如,“data:image/gif;base64”。
这是我的想法。
黄明哲寄语。