显示来自数据库的图像(位图错误)

show image from database (Bitmap error)

我必须按下按钮:第一个按钮用于将图像从图库保存到数据库,第二个按钮用于在 imageView 中显示来自数据库的图像,但我的第二个按钮的问题是这一行的错误: "Bitmap bitmapImage = BitmapFactory.decodeFile(imageFile.toString());"

在 logcat 错误中:

"E/BitmapFactory: Unable to decode stream: java.io.FileNotFoundException: [B@c97f202: open failed: ENOENT (No such file or directory)"

数据库代码:

private static String dbNAME = "myDB.db";
    private static String tableName = "imageColumns";
    private static String imageColumnName = "image";
    private Bitmap bitmap;
    private int i = 1;

    db = this.openOrCreateDatabase(dbNAME, SQLiteDatabase.CREATE_IF_NECESSARY, null);
    db.setVersion(1);
    db.setLocale(Locale.getDefault());

    String createTable = "create table if not exists imageColumns(id INTEGER PRIMARY KEY AUTOINCREMENT , image TEXT)";
    db.execSQL(createTable);

第一个按钮(保存图像)代码:

    public void save(View view) {
    if (bitmap != null) {
        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.PNG, 0, stream);
        byte[] byteImage = stream.toByteArray();

        ContentValues values = new ContentValues();
        values.put(imageColumnName, String.valueOf(byteImage));

        db.insert(tableName, null, values);

        Toast.makeText(this, "Save", Toast.LENGTH_SHORT).show();
    } else {
        Toast.makeText(this, "Save Image First!", Toast.LENGTH_SHORT).show();
    }


}

第二个按钮(显示图像)代码:

public void showImage(View view) {

    Cursor cursor2 = db.rawQuery("select * from imageColumns where id = " + i, null);
    if (cursor2.getCount() != 0) {
        while (cursor2.moveToNext()) {
            Toast.makeText(this, "number of images" + i, Toast.LENGTH_SHORT).show();
            String path = cursor2.getString(cursor2.getColumnIndex(imageColumnName));
            File imageFile = new File(path);
            Bitmap bitmapImage = BitmapFactory.decodeFile(imageFile.toString());
                 imageView.setImageBitmap(bitmapImage); //this line is problem
       }
        i++;
    }

}
public byte[] convetBitmapToByteArray(Bitmap bm)
{
    int size = bm.getRowBytes() * bm.getHeight();
    ByteBuffer byteBuffer = ByteBuffer.allocate(size);
    bm.copyPixelsToBuffer(byteBuffer);
   return byteBuffer.array();
}
public Bitmap convertByteToBitmap(byte[] evidence)
{
    Bitmap bmp= BitmapFactory.decodeByteArray(evidence, 0, evidence.length);
    return bmp;
}

使用以上两种方法将图像存储和检索到table。 您应该在 table 中创建一个 BLOB 类型的列,它可以存储字节数组,因此首先您必须将位图转换为字节数组,然后将其插入到 table 中,当您检索记录时,您将获取该字节数组,因此将其转换回位图以将其设置为 imageView。