Android开发13――内容提供者ContentProvider的基本使用

一、ContentProvider简介

当应用继承ContentProvider类,并重写该类用于提供数据和存储数据的方法,就可以向其他应用共享其数据。ContentProvider为存储和获取数据提供了统一的接口。虽然使用其他方法也可以对外共享数据,但数据访问方式会因数据存储的方式而不同,如采用文件方式对外共享数据,需要进行文件操作读写数据;采用sharedpreferences共享数据,需要使用sharedpreferences API读写数据。而使用ContentProvider共享数据的好处是统一了数据访问方式。

 

query(Uri uri, String[] projection, String selection, String[] selectionArgs,String sortOrder)
通过Uri进行查询,返回一个Cursor

insert(Uri url, ContentValues values)
将一组数据插入到Uri 指定的地方

update(Uri uri, ContentValues values, String where, String[] selectionArgs)
更新Uri指定位置的数据

delete(Uri url, String where, String[] selectionArgs)
删除指定Uri并且符合一定条件的数据

 

 

二、Uri类简介

Uri代表了要操作的数据,Uri主要包含了两部分信息
①需要操作的ContentProvider
②对ContentProvider中的什么数据进行操作

 

组成部分
scheme:ContentProvider的scheme已经由Android所规定为content://
主机名(Authority):用于唯一标识这个ContentProvider,外部调用者可以根据这个标识来找到它。建议为公司域名,保持唯一性
③路径(path):可以用来表示我们要操作的数据,路径的构建应根据业务而定:

 

要操作person表中id为10的记录
content://cn.xyCompany.providers.personProvider/person/10

 

要操作person表中id为10的记录的name字段
content://cn.xyCompany.providers.personProvider/person/10/name

 

要操作person表中的所有记录
content://cn.xyCompany.providers.personProvider/person

 

要操作的数据不一定来自数据库,也可以是文件等他存储方式,如要操作xml文件中user节点下的name节点

content://cn.xyCompany.providers.personProvider/person/10/name

 

把一个字符串转换成Uri,可以使用Uri类中的parse()方法
Uri uri = Uri.parse("content://cn.xyCompany.providers.personProvider/person")

 

三、UriMatcher、ContentUris和ContentResolver简介

Uri代表了要操作的数据,所以经常需要解析Uri,并从Uri中获取数据。Android系统提供了两个用于操作Uri的工具类,分别为UriMatcher 和ContentUris。掌握它们的使用会便于我们的开发工作。

 

UriMatcher

用于匹配Uri

①把需要匹配Uri路径全部给注册上

// 常量UriMatcher.NO_MATCH表示不匹配任何路径的返回码(-1)。
UriMatcher  uriMatcher = new UriMatcher(UriMatcher.NO_MATCH);

// 若match()方法匹配content://cn.xyCompany.providers.personProvider/person路径则返回匹配码为1
uriMatcher.addURI("content://cn.xyCompany.providers.personProvider","person", 1);

// 若match()方法匹配content://cn.xyCompany.providers.personProvider/person/10路径则返回匹配码为2
uriMatcher.addURI("content://cn.xyCompany.providers.personProvider","person/#", 1);

②注册完需要匹配的Uri后,就可以使用uriMatcher.match(uri)方法对输入的Uri进行匹配


ContentUris
ContentUris是对URI的操作类,其中的withAppendedId(uri, id)用于为路径加上ID部分,parseId(uri)方法用于从路径中获取ID部分方法很实用。
Uri insertUri = Uri.parse("content://cn.xyCompany.providers.personProvider/person" + id);等价于
Uri insertUri = ContentUris.withAppendedId(uri, id);


ContentResolver
当外部应用需要对ContentProvider中的数据进行添加、删除、修改和查询操作时,可以使用ContentResolver 类来完成。要获取ContentResolver 对
象,可以使用Activity提供的getContentResolver()方法。 ContentResolver使用insert、delete、update、query方法来操作数据。

 

三、实例代码

当数据需要在应用程序间共享时,我们就可以利用ContentProvider为数据定义一个URI。之后其他应用程序对数据进行查询或者修改时,只需要从当前上下文对象获得一个ContentResolver(内容解析器)传入相应的URI就可以了。

contentProvider和Activity一样是Android的组件,故使用前需要在AndroidManifest.xml中注册,必须放在主应用所在包或其子包下。

  
  
  
  
  1. <application android:icon="@drawable/icon" android:label="@string/app_name"> 
  2.     <activity android:name=".MainActivity" 
  3.               android:label="@string/app_name"> 
  4.         <intent-filter> 
  5.             <action android:name="android.intent.action.MAIN" /> 
  6.             <category android:name="android.intent.category.LAUNCHER" /> 
  7.         </intent-filter> 
  8.         <intent-filter> 
  9.             <data android:mimeType="vnd.android.cursor.dir/person" /> 
  10.         </intent-filter> 
  11.         <intent-filter> 
  12.             <data android:mimeType="vnd.android.cursor.item/person" /> 
  13.         </intent-filter> 
  14.     </activity> 
  15.     <!-- 配置内容提供者,android:authorities为该内容提供者取名作为在本应用中的唯一标识 --> 
  16.     <provider android:name=".providers.PersonProvider" 
  17.             android:authorities="cn.xyCompany.providers.personProvider"/> 
  18. </application> 

内容提供者和测试代码 

  
  
  
  
  1. 内容提供者  
  2. package cn.xy.cotentProvider.app.providers;  
  3. import android.content.ContentProvider;  
  4. import android.content.ContentUris;  
  5. import android.content.ContentValues;  
  6. import android.content.UriMatcher;  
  7. import android.database.Cursor;  
  8. import android.database.sqlite.SQLiteDatabase;  
  9. import android.net.Uri;  
  10. import android.util.Log;  
  11. import cn.xy.cotentProvider.service.DBOpeningHelper;  
  12.  
  13.  
  14. public class PersonProvider extends ContentProvider  
  15. {  
  16.  private DBOpeningHelper dbHelper;  
  17.  
  18.  // 若不匹配采用UriMatcher.NO_MATCH(-1)返回  
  19.  private static final UriMatcher MATCHER = new UriMatcher(UriMatcher.NO_MATCH);  
  20.  
  21.  // 匹配码  
  22.  private static final int CODE_NOPARAM = 1;  
  23.  private static final int CODE_PARAM = 2;  
  24.  
  25.  static 
  26.  {  
  27.   // 对等待匹配的URI进行匹配操作,必须符合cn.xyCompany.providers.personProvider/person格式  
  28.   // 匹配返回CODE_NOPARAM,不匹配返回-1  
  29.   MATCHER.addURI("cn.xyCompany.providers.personProvider""person", CODE_NOPARAM);  
  30.  
  31.   // #表示数字 cn.xyCompany.providers.personProvider/person/10  
  32.   // 匹配返回CODE_PARAM,不匹配返回-1  
  33.   MATCHER.addURI("cn.xyCompany.providers.personProvider""person/#", CODE_PARAM);  
  34.  }  
  35.  
  36.  @Override 
  37.  public boolean onCreate()  
  38.  {  
  39.   dbHelper = new DBOpeningHelper(this.getContext());  
  40.   return true;  
  41.  }  
  42.  
  43.    
  44.  @Override 
  45.  public Uri insert(Uri uri, ContentValues values)  
  46.  {  
  47.   SQLiteDatabase db = dbHelper.getWritableDatabase();  
  48.   switch (MATCHER.match(uri))  
  49.   {  
  50.    case CODE_NOPARAM:  
  51.     // 若主键值是自增长的id值则返回值为主键值,否则为行号,但行号并不是RecNo列  
  52.     long id = db.insert("person""name", values);  
  53.     Uri insertUri = ContentUris.withAppendedId(uri, id);  
  54.     return insertUri;  
  55.    default:  
  56.     throw new IllegalArgumentException("this is unkown uri:" + uri);  
  57.   }  
  58.  }  
  59.  
  60.    
  61.  @Override 
  62.  public int delete(Uri uri, String selection, String[] selectionArgs)  
  63.  {  
  64.   SQLiteDatabase db = dbHelper.getWritableDatabase();  
  65.   switch (MATCHER.match(uri))  
  66.   {  
  67.    case CODE_NOPARAM:  
  68.     return db.delete("person", selection, selectionArgs); // 删除所有记录  
  69.    case CODE_PARAM:  
  70.     long id = ContentUris.parseId(uri); // 取得跟在URI后面的数字  
  71.     Log.i("provider", String.valueOf(id));  
  72.     String where = "id = " + id;  
  73.     if (null != selection && !"".equals(selection.trim()))  
  74.     {  
  75.      where += " and " + selection;  
  76.     }  
  77.     return db.delete("person", where, selectionArgs);  
  78.    default:  
  79.     throw new IllegalArgumentException("this is unkown uri:" + uri);  
  80.   }  
  81.  }  
  82.  
  83.    
  84.  @Override 
  85.  public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs)  
  86.  {  
  87.   SQLiteDatabase db = dbHelper.getWritableDatabase();  
  88.   switch (MATCHER.match(uri))  
  89.   {  
  90.    case CODE_NOPARAM:  
  91.     return db.update("person",values,selection, selectionArgs); // 更新所有记录  
  92.    case CODE_PARAM:  
  93.     long id = ContentUris.parseId(uri); // 取得跟在URI后面的数字  
  94.     String where = "id = " + id;  
  95.     if (null != selection && !"".equals(selection.trim()))  
  96.     {  
  97.      where += " and " + selection;  
  98.     }  
  99.     return db.update("person",values,where,selectionArgs);  
  100.    default:  
  101.     throw new IllegalArgumentException("this is unkown uri:" + uri);  
  102.   }  
  103.  }  
  104.    
  105.    
  106.  @Override 
  107.  public String getType(Uri uri)  
  108.  {  
  109.   switch(MATCHER.match(uri))  
  110.   {  
  111.    case CODE_NOPARAM:  
  112.     return "vnd.android.cursor.dir/person";  
  113.    case CODE_PARAM:  
  114.     return "vnd.android.cursor.item/person";  
  115.    default:  
  116.     throw new IllegalArgumentException("this is unkown uri:" + uri);  
  117.   }  
  118.  }  
  119.  
  120.  @Override 
  121.  public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)  
  122.  {  
  123.   SQLiteDatabase db = dbHelper.getReadableDatabase();  
  124.   switch (MATCHER.match(uri))  
  125.   {  
  126.    case CODE_NOPARAM:  
  127.     return db.query("person", projection, selection, selectionArgs, nullnull, sortOrder);  
  128.    case CODE_PARAM:  
  129.     long id = ContentUris.parseId(uri); // 取得跟在URI后面的数字  
  130.     String where = "id = " + id;  
  131.     if (null != selection && !"".equals(selection.trim()))  
  132.     {  
  133.      where += " and " + selection;  
  134.     }  
  135.     return db.query("person", projection, where, selectionArgs, nullnull, sortOrder);  
  136.    default:  
  137.     throw new IllegalArgumentException("this is unkown uri:" + uri);  
  138.   }  
  139.  }  
  140.  
  141. }  
  142.  
  143.    
  144.  
  145. 测试代码  
  146. package cn.xy.test.test;  
  147. import android.content.ContentResolver;  
  148. import android.content.ContentValues;  
  149. import android.database.Cursor;  
  150. import android.net.Uri;  
  151. import android.test.AndroidTestCase;  
  152. import android.util.Log;  
  153.  
  154.  
  155. public class TestProviders extends AndroidTestCase  
  156. {  
  157.  // 在执行该测试方法时需要先将还有内容提供者的项目部署到Android中,否则无法找到内容提供者  
  158.  public void testInsert()  
  159.  {  
  160.   Uri uri = Uri.parse("content://cn.xyCompany.providers.personProvider/person");  
  161.   ContentResolver resolver = this.getContext().getContentResolver();  
  162.   ContentValues values = new ContentValues();  
  163.   values.put("name""xy");  
  164.   values.put("phone""111");  
  165.   resolver.insert(uri, values); // 内部调用内容提供者的insert方法  
  166.  }  
  167.  
  168.  // 不带id参数的删除  
  169.  public void testDelete1()  
  170.  {  
  171.   Uri uri = Uri.parse("content://cn.xyCompany.providers.personProvider/person");  
  172.   ContentResolver resolver = this.getContext().getContentResolver();  
  173.   int rowAffect = resolver.delete(uri, nullnull);  
  174.   Log.i("rowAffect", String.valueOf(rowAffect));  
  175.  }  
  176.  
  177.  // 带参数的删除,通过URI传递了id至contentProvider并可追加其他条件  
  178.  public void testDelete2()  
  179.  {  
  180.   Uri uri = Uri.parse("content://cn.xyCompany.providers.personProvider/person/18");  
  181.   ContentResolver resolver = this.getContext().getContentResolver();  
  182.   int rowAffect = resolver.delete(uri, "name = ?"new String[] { "XY2" }); // 在provider中手动进行了拼装  
  183.   Log.i("rowAffect", String.valueOf(rowAffect));  
  184.  }  
  185.    
  186.  public void testUpdate()  
  187.  {  
  188.   Uri uri = Uri.parse("content://cn.xyCompany.providers.personProvider/person/19");  
  189.   ContentResolver resolver = this.getContext().getContentResolver();  
  190.   ContentValues values = new ContentValues();  
  191.   values.put("name""newxy");  
  192.   values.put("phone""new111");  
  193.   int rowAffect = resolver.update(uri, values, nullnull);  
  194.   Log.i("rowAffect", String.valueOf(rowAffect));  
  195.  }  
  196.    
  197.  public void testQuery()  
  198.  {  
  199.   Uri uri = Uri.parse("content://cn.xyCompany.providers.personProvider/person/19");  
  200.   ContentResolver resolver = this.getContext().getContentResolver();  
  201.   Cursor cursor = resolver.query(uri, new String[]{"id","name","phone"}, nullnull"id asc");  
  202.   if(cursor.moveToFirst())  
  203.   {  
  204.    Log.i("query", cursor.getString(cursor.getColumnIndex("name")));  
  205.   }  
  206.   cursor.close();  
  207.  }  
  208. }  
  209.  

参考博客:http://www.cnblogs.com/chenglong/articles/1892029.html

你可能感兴趣的:(android,ContentProvider)