1

我正在尝试将大文件(位图)存储在我的内容提供程序中,但不知道如何。我在我的记录中添加了一个“_data”字段,并覆盖了我的 Content Provider 的 openFile() 方法。

public void onCreate(SQLiteDatabase db) {
    db.execSQL("create table contact ( _id integer primary key autoincrement, NAME text collate nocase, IMAGE text, _data text );");
}

public ParcelFileDescriptor openFile(Uri uri, String mode)
    throws FileNotFoundException {

    String rowID = uri.getPathSegments().get(1);
    String dir = Environment.DIRECTORY_PICTURES;

    File file = new File(getContext().getExternalFilesDir(dir), rowID);
    if (!file.exists()) {
        try {
            file.createNewFile();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    int fileMode = 0;
    if (mode.contains("w"))
        fileMode |= ParcelFileDescriptor.MODE_WRITE_ONLY;
    if (mode.contains("r"))
        fileMode |= ParcelFileDescriptor.MODE_READ_ONLY;
    if (mode.contains("+"))
        fileMode |= ParcelFileDescriptor.MODE_APPEND;
    return ParcelFileDescriptor.open(file, fileMode);
}

我正在使用 Content Resolver 的 openOutputStream() 方法插入位图。

ContentValues values = new ContentValues();
values.put("NAME", "abc");
Uri rowUri = cr.insert(MyContentProvider.CONTENT_URI, values);
values.put("IMAGE", rowUri.toString());
cr.update(rowUri, values, null, null);

InputStream inputStream = httpConnection.getInputStream();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
String line = null;
try {
    Bitmap bitmap = BitmapFactory.decodeStream((InputStream)new URL("http://www.xyz.com/abc.jpg").getContent());
    bitmap.compress(Bitmap.CompressFormat.JPEG, 80, cr.openOutputStream(rowUri));
} catch (MalformedURLException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

当我这样做时,文件存储在我的 SD 卡中,但“_data”字段保持为空。我做错了什么?

我需要自己写“_data”字段吗?根据本教程,答案似乎是“是”。“_data”字段写入 insert() 方法中,并带有该文件在设备上的确切文件路径。记录中的 URI 引用 IMAGE 不是必需的。但是这个教程已经有几年了,我还没有找到另一个像这样直接写“_data”的例子。有人知道一个很好的例子吗?

4

1 回答 1

1

上述教程中建议的解决方案有效。

于 2012-12-19T17:29:08.373 回答