原文:http://my.oschina.net/haquanwen/blog/54390点击打开链接
工作中遇到了contentprovider数据共享机制,下面来总结一下:
一、ContentProvider简介
当应用继承ContentProvider类,并重写该类用于提供数据和存储数据的方法,就可以向其他应用共享其数据。虽然使用其他方法也可以对外共享数据,但数据访问方式会因数据存储的方式而不同,如:采用文件方式对外共享数据,需要进行文件操作读写数据;采用sharedpreferences共享数据,需要使用sharedpreferences API读写数据。而使用ContentProvider共享数据的好处是统一了数据访问方式。
二、Uri类简介
Uri代表了要操作的数据,Uri主要包含了两部分信息:1.需要操作的ContentProvider ,2.对ContentProvider中的什么数据进行操作,一个Uri由以下几部分组成:
1.scheme:ContentProvider(内容提供者)的scheme已经由Android所规定为:content://。
2.主机名(或Authority):用于唯一标识这个ContentProvider,外部调用者可以根据这个标识来找到它。
3.路径(path):可以用来表示我们要操作的数据,路径的构建应根据业务而定,如下:
• 要操作contact表中id为10的记录,可以构建这样的路径:/contact/10
• 要操作contact表中id为10的记录的name字段, contact/10/name
• 要操作contact表中的所有记录,可以构建这样的路径:/contact
要操作的数据不一定来自数据库,也可以是文件等他存储方式,如下:
要操作xml文件中contact节点下的name节点,可以构建这样的路径:/contact/name
如果要把一个字符串转换成Uri,可以使用Uri类中的parse()方法,如下:
Uri uri = Uri.parse("content://com.changcheng.provider.contactprovider/contact")
三、UriMatcher、ContentUrist和ContentResolver简介
因为Uri代表了要操作的数据,所以我们很经常需要解析Uri,并从Uri中获取数据。Android系统提供了两个用于操作Uri的工具类,分别为UriMatcher 和ContentUris 。掌握它们的使用,会便于我们的开发工作。
UriMatcher:用于匹配Uri,它的用法如下:
1.首先把你需要匹配Uri路径全部给注册上,如下:
//常量UriMatcher.NO_MATCH表示不匹配任何路径的返回码(-1)。
UriMatcher uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);
//如果match()方法匹配content://com.changcheng.sqlite.provider.contactprovider/contact路径,返回匹配码为1
uriMatcher.addURI(“com.changcheng.sqlite.provider.contactprovider”, “contact”, 1);//添加需要匹配uri,如果匹配就会返回匹配码
//如果match()方法匹配 content://com.changcheng.sqlite.provider.contactprovider/contact/230路径,返回匹配码为2
uriMatcher.addURI(“com.changcheng.sqlite.provider.contactprovider”, “contact/#”, 2);//#号为通配符
2.注册完需要匹配的Uri后,就可以使用uriMatcher.match(uri)方法对输入的Uri进行匹配,如果匹配就返回匹配码,匹配码是调用addURI()方法传入的第三个参数,假设匹配content://com.changcheng.sqlite.provider.contactprovider/contact路径,返回的匹配码为1。
ContentUris:用于获取Uri路径后面的ID部分,它有两个比较实用的方法:
• withAppendedId(uri, id)用于为路径加上ID部分
• parseId(uri)方法用于从路径中获取ID部分
ContentResolver:当外部应用需要对ContentProvider中的数据进行添加、删除、修改和查询操作时,可以使用ContentResolver 类来完成,要获取ContentResolver 对象,可以使用Activity提供的getContentResolver()方法。 ContentResolver使用insert、delete、update、query方法,来操作数据。
四、ContentProvider示例程序
Manifest.xml中的代码:
01 | <application android:icon= "@drawable/icon" android:label= "@string/app_name" > |
02 | <activity android:name= ".TestWebviewDemo" android:label= "@string/app_name" > |
04 | <action android:name= "android.intent.action.MAIN" /> |
05 | <category android:name= "android.intent.category.LAUNCHER" /> |
08 | <data android:mimeType= "vnd.android.cursor.dir/vnd.ruixin.login" /> |
11 | <data android:mimeType= "vnd.android.cursor.item/vnd.ruixin.login" /> |
15 | <provider android:name= "MyProvider" android:authorities= "com.ruixin.login" /> |
需要在<application></application>中为provider进行注册!!!!
首先定义一个数据库的工具类:
03 | public static final String DBNAME = "ruixinonlinedb" ; |
04 | public static final String TNAME = "ruixinonline" ; |
05 | public static final int VERSION = 3 ; |
07 | public static String TID = "tid" ; |
08 | public static final String EMAIL = "email" ; |
09 | public static final String USERNAME = "username" ; |
10 | public static final String DATE = "date" ; |
11 | public static final String SEX = "sex" ; |
14 | public static final String AUTOHORITY = "com.ruixin.login" ; |
15 | public static final int ITEM = 1 ; |
16 | public static final int ITEM_ID = 2 ; |
18 | public static final String CONTENT_TYPE = "vnd.android.cursor.dir/vnd.ruixin.login" ; |
19 | public static final String CONTENT_ITEM_TYPE = "vnd.android.cursor.item/vnd.ruixin.login" ; |
21 | public static final Uri CONTENT_URI = Uri.parse( "content://" + AUTOHORITY + "/ruixinonline" ); |
- 然后创建一个数据库:
01 | public class DBlite extends SQLiteOpenHelper { |
02 | public DBlite(Context context) { |
03 | super (context, RuiXin.DBNAME, null , RuiXin.VERSION); |
07 | public void onCreate(SQLiteDatabase db) { |
09 | db.execSQL( "create table " +RuiXin.TNAME+ "(" + |
10 | RuiXin.TID+ " integer primary key autoincrement not null," + |
11 | RuiXin.EMAIL+ " text not null," + |
12 | RuiXin.USERNAME+ " text not null," + |
13 | RuiXin.DATE+ " interger not null," + |
14 | RuiXin.SEX+ " text not null);" ); |
17 | public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { |
20 | public void add(String email,String username,String date,String sex){ |
21 | SQLiteDatabase db = getWritableDatabase(); |
22 | ContentValues values = new ContentValues(); |
23 | values.put(RuiXin.EMAIL, email); |
24 | values.put(RuiXin.USERNAME, username); |
25 | values.put(RuiXin.DATE, date); |
26 | values.put(RuiXin.SEX, sex); |
27 | db.insert(RuiXin.TNAME, "" ,values); |
- 接着创建一个Myprovider.java对数据库的接口进行包装:
001 | public class MyProvider extends ContentProvider{ |
006 | private static final UriMatcher sMatcher; |
008 | sMatcher = new UriMatcher(UriMatcher.NO_MATCH); |
009 | sMatcher.addURI(RuiXin.AUTOHORITY,RuiXin.TNAME, RuiXin.ITEM); |
010 | sMatcher.addURI(RuiXin.AUTOHORITY, RuiXin.TNAME+ "/#" , RuiXin.ITEM_ID); |
014 | public int delete(Uri uri, String selection, String[] selectionArgs) { |
016 | db = dBlite.getWritableDatabase(); |
018 | switch (sMatcher.match(uri)) { |
020 | count = db.delete(RuiXin.TNAME,selection, selectionArgs); |
023 | String id = uri.getPathSegments().get( 1 ); |
024 | count = db.delete(RuiXin.TID, RuiXin.TID+ "=" +id+(!TextUtils.isEmpty(RuiXin.TID= "?" )? "AND(" +selection+ ')' : "" ), selectionArgs); |
027 | throw new IllegalArgumentException( "Unknown URI" +uri); |
029 | getContext().getContentResolver().notifyChange(uri, null ); |
034 | public String getType(Uri uri) { |
036 | switch (sMatcher.match(uri)) { |
038 | return RuiXin.CONTENT_TYPE; |
040 | return RuiXin.CONTENT_ITEM_TYPE; |
042 | throw new IllegalArgumentException( "Unknown URI" +uri); |
047 | public Uri insert(Uri uri, ContentValues values) { |
050 | db = dBlite.getWritableDatabase(); |
052 | if (sMatcher.match(uri)!=RuiXin.ITEM){ |
053 | throw new IllegalArgumentException( "Unknown URI" +uri); |
055 | rowId = db.insert(RuiXin.TNAME,RuiXin.TID,values); |
057 | Uri noteUri=ContentUris.withAppendedId(RuiXin.CONTENT_URI, rowId); |
058 | getContext().getContentResolver().notifyChange(noteUri, null ); |
061 | throw new IllegalArgumentException( "Unknown URI" +uri); |
065 | public boolean onCreate() { |
067 | this .dBlite = new DBlite( this .getContext()); |
074 | public Cursor query(Uri uri, String[] projection, String selection, |
075 | String[] selectionArgs, String sortOrder) { |
077 | db = dBlite.getWritableDatabase(); |
079 | Log.d( "-------" , String.valueOf(sMatcher.match(uri))); |
080 | switch (sMatcher.match(uri)) { |
082 | c = db.query(RuiXin.TNAME, projection, selection, selectionArgs, null , null , null ); |
086 | String id = uri.getPathSegments().get( 1 ); |
087 | c = db.query(RuiXin.TNAME, projection, RuiXin.TID+ "=" +id+(!TextUtils.isEmpty(selection)? "AND(" +selection+ ')' : "" ),selectionArgs, null , null , sortOrder); |
090 | Log.d( "!!!!!!" , "Unknown URI" +uri); |
091 | throw new IllegalArgumentException( "Unknown URI" +uri); |
093 | c.setNotificationUri(getContext().getContentResolver(), uri); |
097 | public int update(Uri uri, ContentValues values, String selection, |
098 | String[] selectionArgs) { |
最后创建测试类:
01 | public class Test extends Activity { |
02 | /** Called when the activity is first created. */ |
03 | private DBlite dBlite1 = new DBlite( this );; |
04 | private ContentResolver contentResolver; |
05 | public void onCreate(Bundle savedInstanceState) { |
06 | super .onCreate(savedInstanceState); |
07 | setContentView(R.layout.main); |
09 | dBlite1.add(email,username,date,sex); |
11 | contentResolver = TestWebviewDemo. this .getContentResolver(); |
12 | Cursor cursor = contentResolver.query( |
13 | RuiXin.CONTENT_URI, new String[] { |
14 | RuiXin.EMAIL, RuiXin.USERNAME, |
15 | RuiXin.DATE,RuiXin.SEX }, null , null , null ); |
16 | while (cursor.moveToNext()) { |
19 | cursor.getString(cursor.getColumnIndex(RuiXin.EMAIL)) |
21 | + cursor.getString(cursor.getColumnIndex(RuiXin.USERNAME)) |
23 | + cursor.getString(cursor.getColumnIndex(RuiXin.DATE)) |
25 | + cursor.getString(cursor.getColumnIndex(RuiXin.SEX)), |
26 | Toast.LENGTH_SHORT).show(); |
28 | startManagingCursor(cursor); |
注:上面是在一个程序中进行的测试,也可以再新建一个工程来模拟一个新的程序,然后将上面查询的代码加到新的程序当中!这样就模拟了contentprovider的数据共享功能了!
新建个工程:TestProvider
创建一个测试的activity
01 | public class Test extends Activity { |
02 | /** Called when the activity is first created. */ |
03 | private ContentResolver contentResolver; |
04 | public void onCreate(Bundle savedInstanceState) { |
05 | super .onCreate(savedInstanceState); |
06 | setContentView(R.layout.main); |
09 | contentResolver = TestWebviewDemo. this .getContentResolver(); |
10 | Cursor cursor = contentResolver.query( |
11 | RuiXin.CONTENT_URI, new String[] { |
12 | RuiXin.EMAIL, RuiXin.USERNAME, |
13 | RuiXin.DATE,RuiXin.SEX }, null , null , null ); |
14 | while (cursor.moveToNext()) { |
15 | Toast.makeText(TestWebviewDemo. this , |
16 | cursor.getString(cursor.getColumnIndex(RuiXin.EMAIL)) |
18 | + cursor.getString(cursor.getColumnIndex(RuiXin.USERNAME)) |
20 | + cursor.getString(cursor.getColumnIndex(RuiXin.DATE)) |
22 | + cursor.getString(cursor.getColumnIndex(RuiXin.SEX)), |
23 | Toast.LENGTH_SHORT).show(); |
25 | startManagingCursor(cursor); |
运行此程序就能实现共享数据查询了!
注:新建的程序中的manifest.xml中不需要对provider进行注册,直接运行就行,否则会报错!