Android通过ContentProvider传输文件

我们知道Android两个应用程序之间进行数据交互需要通过ContentProvider,而且通常都是数据库的操作。
今天项目需要使用Android的ContentProvider交互普通SD卡上的文件,于是我写了这个小例子:
AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.h3c.test"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="15" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:label="@string/app_name"
            android:name=".NotepadTestActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        
        <provider android:name=".TestContentProvider" android:authorities="com.h3c.test" />
    </application>

</manifest>

TestContentProvider.java
package com.h3c.test;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;

import android.content.ContentProvider;
import android.content.ContentProviderOperation;
import android.content.ContentProviderResult;
import android.content.ContentValues;
import android.content.OperationApplicationException;
import android.content.res.AssetFileDescriptor;
import android.database.Cursor;
import android.net.Uri;
import android.os.Environment;
import android.os.ParcelFileDescriptor;
import android.util.Log;

public class TestContentProvider extends ContentProvider {

    @Override
    public int delete(Uri uri, String selection, String[] selectionArgs) {
        // TODO Auto-generated method stub
        Log.e("H3c", "delete");
        return 0;
    }

    @Override
    public String getType(Uri uri) {
        // TODO Auto-generated method stub
        Log.e("H3c", "gettype");
        return null;
    }

    @Override
    public Uri insert(Uri uri, ContentValues values) {
        // TODO Auto-generated method stub
        Log.e("H3c", "insert");
        return null;
    }

    @Override
    public boolean onCreate() {
        // TODO Auto-generated method stub
        Log.e("H3c", "create");
        return false;
    }

    @Override
    public Cursor query(Uri uri, String[] projection, String selection,
            String[] selectionArgs, String sortOrder) {
        // TODO Auto-generated method stub
        Log.e("H3c", "query");
        return null;
    }

    @Override
    public int update(Uri uri, ContentValues values, String selection,
            String[] selectionArgs) {
        // TODO Auto-generated method stub
        Log.e("H3c", "update");
        return 0;
    }

    @Override
    public AssetFileDescriptor openAssetFile(Uri uri, String mode)
            throws FileNotFoundException {
        // TODO Auto-generated method stub
        Log.e("H3c", "openAssetFile");
        return super.openAssetFile(uri, mode);
    }

    //此方法非常重要,一定要重写,否则默认报FileNotFound异常
    @Override
    public ParcelFileDescriptor openFile(Uri uri, String mode)
            throws FileNotFoundException {
        // TODO Auto-generated method stub
        File root = Environment.getExternalStorageDirectory();
        root.mkdirs();
        File path = new File(root, uri.getEncodedPath());

        Log.e("H3c", "opeFile:"+path);
        int imode = 0;
        if (mode.contains("w")) {
            imode |= ParcelFileDescriptor.MODE_WRITE_ONLY;
            if (!path.exists()) {
                try {
                    path.createNewFile();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        if (mode.contains("r"))
            imode |= ParcelFileDescriptor.MODE_READ_ONLY;
        if (mode.contains("+"))
            imode |= ParcelFileDescriptor.MODE_APPEND;

        return ParcelFileDescriptor.open(path, imode);
    }

}

NotepadTestActivity.java
package com.h3c.test;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

import android.app.Activity;
import android.content.Context;
import android.content.pm.PackageManager.NameNotFoundException;
import android.content.res.AssetFileDescriptor;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class NotepadTestActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.notepad);

        Button button = (Button) findViewById(R.id.notepad);
        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                try {
                    // 直接读文件
                    // InputStream is = getContentResolver().openInputStream(
                    // Uri.parse("file:/mnt/sdcard/h3c.txt"));
                    //
                    // File bkFile = new File("/mnt/sdcard/h3c2.txt");
                    // if (!bkFile.exists()) {
                    // bkFile.createNewFile();
                    // }
                    //                    
                    // FileOutputStream out = new FileOutputStream(bkFile);
                    // byte[] b = new byte[1024 * 5]; // 5KB
                    // int len;
                    // while ((len = is.read(b)) != -1) {
                    // out.write(b, 0, len);
                    // }
                    // out.flush();
                    // is.close();
                    // out.close();

                    // 直接写文件
                    // OutputStream out = getContentResolver().openOutputStream(
                    // Uri.parse("file:/mnt/sdcard/h3c.txt"));
                    // FileInputStream in = new FileInputStream(new File(
                    // "/mnt/sdcard/h3c3.txt"));
                    //
                    // byte[] b = new byte[1024 * 5]; // 5KB
                    // int len;
                    // while ((len = in.read(b)) != -1) {
                    // out.write(b, 0, len);
                    // }
                    // out.flush();
                    //                    
                    // in.close();
                    // out.close();

                    // 内容流写
                    // AssetFileDescriptor afd = getContentResolver()
                    // .openAssetFileDescriptor(
                    // Uri.parse("content://com.h3c.test/h3c.txt"),
                    // "wr");
                    // InputStream in = afd.createInputStream();
                    // File bkFile = new File("/mnt/sdcard/h3c2.txt");
                    // if (!bkFile.exists()) {
                    // bkFile.createNewFile();
                    // }
                    //
                    // FileOutputStream out = new FileOutputStream(bkFile);
                    // byte[] b = new byte[1024 * 5]; // 5KB
                    // int len;
                    // while ((len = in.read(b)) != -1) {
                    // out.write(b, 0, len);
                    // }
                    // out.flush();
                    // in.close();
                    // out.close();

                    // 内容流读
                    AssetFileDescriptor afd = getContentResolver()
                            .openAssetFileDescriptor(
                                    Uri.parse("content://com.h3c.test/h3c.txt"),
                                    "wr");
                    OutputStream out = afd.createOutputStream();
                    FileInputStream in = new FileInputStream(new File(
                            "/mnt/sdcard/h3c2.txt"));

                    byte[] b = new byte[1024 * 5]; // 5KB
                    int len;
                    while ((len = in.read(b)) != -1) {
                        out.write(b, 0, len);
                    }
                    out.flush();

                    in.close();
                    out.close();
                } catch (FileNotFoundException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        });

    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值