gpt4 book ai didi

java - 如何将 blob 转换为图像以将其显示在 Java 中的 JLabel 上?

转载 作者:行者123 更新时间:2023-12-01 22:17:05 25 4
gpt4 key购买 nike

我的 MySQL 数据库中有一个表“xy”,我在其中保存了图像 (.png)。我需要的是加载图像,从 blob 转换为图像并将其显示在 JLabel 上。

有人可以帮我转换图像吗?

谢谢!

最佳答案

一些代码块,如果可以帮助你:

ResultSet rs = stmt.executeQuery(<Your Query SQL>);  
java.sql.Blob blob = rs.getBlob(column);
InputStream in = blob.getBinaryStream();
BufferedImage image = ImageIO.read(in);

在 JLabel,您应该使用 BufferedImage。

关于java - 如何将 blob 转换为图像以将其显示在 Java 中的 JLabel 上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30751964/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com