朋友们好,我能够使用 Java 中的数字角色 sdk 捕获用户指纹并将其保存到 MySQL 数据库。指纹以字节形式存储。通常我可以将普通图片从字节转换为图像,并使用此代码将其设置为 jLabel 的图标
java.sql.Blob blob = rs.getBlob("profile");//get saved image
InputStream in = blob.getBinaryStream();
BufferedImage image = ImageIO.read(in);
if (image != null) {
ImageIcon icon = new ImageIcon(image);
profilepic.setIcon(icon);
}
但这似乎不适用于保存的指纹。请问有什么建议吗?