如何从javafx imageView获取byte[]?
2022-09-03 12:51:39
如何从javafx image/imageview类中获取byte[]?我想将图像作为 Blob 存储到我的数据库中。这是我使用它的方法
public PreparedStatement prepareQuery(HSQLDBConnector connector) {
try {
Blob logoBlob = connector.connection.createBlob();
logoBlob.setBytes(0,logo.getImage());//stuck here
for (int i = 0, a = 1; i < data.length; i++, a++) {
connector.prepStatCreateProfile.setString(a, data[i]);
}
//store LOB
connector.prepStatCreateProfile.setBlob(11, logoBlob);
} catch (SQLException ex) {
ex.printStackTrace();
}
return connector.prepStatCreateProfile;
}
有没有办法从我当前的对象(图像视图),图像)转换为byte[]?,或者我应该开始考虑为我的图像使用其他类/或者指向带有引用的位置并使用路径/urls?