从数据库blob数据类型

时间:2017-11-23 03:06:12

标签: java activejdbc javalite

好日子先生,我在使用blob数据类型从数据库部署映像时遇到了麻烦。我尝试了路径并且工作正常。现在我想尝试Blob,但是我遇到了什么代码我将无法使用。 先谢谢先生

database image value

这是代码。

List<rec_item_med> recitemmed = new rec_item_med().findAll();

for (rec_item_med l : recitemmed){
    File file = new File("C:\\ecommerce\\first_ecom\\webcontent\\images\\items\\"+l.getString("No")+".png");
    FileOutputStream fileOutputStream = new FileOutputStream(file);
    byte[] bytes = l.getBytes("picture");
    InputStream inputStream = new ByteArrayInputStream(bytes);

    byte[] b = new byte[1024];
    while (inputStream.read(b) > 0) {
        fileOutputStream.write(b);
    }
}

0 个答案:

没有答案