Android- contacts2.db数据表批量操作

| 数据表 | 主要功能 | 主要字段 |
| ------------- |:-------------:|: -----:|
|calls表 | 存储通话记录信息 | number(电话号码)、 date(通话日期)、name(通话名称)、geocoded_location(电话号码所属地) |
| groups表 | 存储手机MAC地址信息 | title(手机的mac地址) _id(Group_ID) |
| data表 | 存储联系人信息 | data1(联系人号码、联系人名称、Group_id)、 raw_contact_id(一个联系人ID) |
| search_index表 | 查询联系人号码 | contact_id(其实跟data表raw_contact_id关联) tokens(联系人号码) |

主要思路
  • 1.联系人的数据库文件的位置:/data/data/com.android.providers.contacts/databases/contacts2.db
  • 2.contacts表:保存了所有的手机测联系人,每个联系人占一行,该表保存了联系人的
    ContactID、联系次数、最后一次联系的时间、是否含有号码、是否被添加到收藏夹等信息。
  • 3.data表:保存了所有创建过的手机测联系人的所有信息,每个字段占一行 ,该表
    保存了两个ID:MimeTypeID和RawContactID,从而将data表和raw_contacts表联系起来。
  • 4.在AndroidManifest.xml文件中配置如下权限:
    <uses-permission android:name="android.permission.READ_CONTACTS"
    />
    <uses-permission android:name="android.permission.WRITE_CONTACTS"
    />
1.calls表操作

主要对通话记录数据表清空和批量插入20条通话记录信息
public void BatchDeleteCallLog(){
try {
context.getContentResolver().delete(
android.provider.CallLog.Calls.CONTENT_URI, null, null);
} catch (Exception e) {
e.printStackTrace();
}
}
批量插入20条通话记录信息
int size=0;
public void BatchAddCallLog(Vector<CallLog> list) throws RemoteException,
OperationApplicationException {
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
ContentValues values = new ContentValues();

    Log.i(TAG, "name" + list.get(0).getName() + "number"
            + list.get(0).getNum());
    Log.i(TAG, "type" + String.valueOf(list.get(0).getRecordType())
            + "date" + String.valueOf(list.get(0).getTime()) + "duration"
            + String.valueOf(list.get(0).getDuration()));
    // for (CallLog calllog : list) {
    if(list.size()>20){
        size=20;
    }else{
        size=list.size();
    }
    for (int i = 0; i < size; i++) {
        int type = list.get(i).getRecordType();
        if (type == 3 || type == 1) {
            type = 3;
        } else if (type == 2) {
            type = 1;
        } else if (type == 4) {
            type = 2;
        }
        values.clear();
        values.put(android.provider.CallLog.Calls.CACHED_NAME, list.get(i).
       getName());
        values.put(android.provider.CallLog.Calls.NUMBER, list.get(i)
                .getNum());
        values.put(android.provider.CallLog.Calls.TYPE,
                String.valueOf(type));
        values.put(android.provider.CallLog.Calls.DATE,
                String.valueOf(list.get(i).getTime()));
        values.put(android.provider.CallLog.Calls.DURATION,
                String.valueOf(list.get(i).getDuration()));
        values.put(android.provider.CallLog.Calls.NEW, "0");

        ops.add(ContentProviderOperation
                .newInsert(android.provider.CallLog.CONTENT_URI)
                .withValues(values).withYieldAllowed(true).build());
    }
    // }
    if (ops != null) {
        // 真正添加
        ContentProviderResult[] results = context.getContentResolver()
                .applyBatch(android.provider.CallLog.AUTHORITY, ops);
        Log.i(TAG, "insert success");

    }
  }
2groups表操作

主要对Groups表查询个数、查询存储的mac是否存在、插入mac地址、根据mac地址找到Group_id、根据mac地址删除对应信息、清空groups表。
Groups表查询个数
public int queryMacCountFromSystem(final Context context) {
Cursor cursor = context.getContentResolver().query(ContactsContract.Groups.CONTENT_URI, null, null, null, null);
Log.i(TAG, "cursor = "+cursor);
if(cursor == null) {
return 0;
} else {
return cursor.getCount();
}
}
查询存储的mac是否存在
public boolean queryMacFromSystem(final Context context, String deviceId) {
String where = ContactsContract.Groups.TITLE + " = ? ";
String[] param = new String[] { deviceId + "" };
Cursor cursor = context.getContentResolver().query(ContactsContract.Groups.CONTENT_URI, null, where, param, null);
if(cursor == null) {
return false;
} else {
if(cursor.getCount()>0) {
return true;
}
}
return false;
}
插入mac地址
public boolean insertMacToSystem(Vector<Contacts> contactsList, String deviceId) {
if ((contactsList == null) || (contactsList.size() == 0) || !isDBEnable()) {
return false;
}
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
L.i(TAG, "insert mac message !");
ops.add(ContentProviderOperation
.newInsert(RawContacts.CONTENT_URI)
.withValue(RawContacts.ACCOUNT_TYPE, null)
.withValue(RawContacts.ACCOUNT_NAME, null)
.withValue(RawContacts.AGGREGATION_MODE,
RawContacts.AGGREGATION_MODE_DISABLED)
.withYieldAllowed(true).build());
ops.add(ContentProviderOperation.newInsert(ContactsContract.Groups.CONTENT_URI)
.withValue(Groups._ID,null)
.withValue(Groups.TITLE, deviceId)
.withYieldAllowed(true).build());
if ((ops != null) && (ops.size() > 0)) {
try {
context.getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
Log.i(TAG, "insertContactsToSystem Mac OK!");
return true;
} catch (Exception e) {
e.printStackTrace();
return false;
}

    }
     return false;
  }

根据mac地址找到Group_id
public int queryIndexGroupID(String groupName) {
String where = Groups.TITLE + " = ? ";
String[] param = new String[] { groupName };
try{
Cursor cursor = context.getContentResolver().query(Groups.CONTENT_URI, null, where, param, null);
if ((cursor != null) && cursor.moveToFirst()) {
return cursor.getInt(cursor.getColumnIndex(Groups._ID));
}
} catch (Exception e) {
e.printStackTrace();
}

    return -1;
  }

根据mac地址删除对应信息
public boolean delMacFromSystem(final Context context, String deviceId) {
String where = ContactsContract.Groups.TITLE + " = ? ";
String[] param = new String[] { deviceId + "" };
Cursor cursor = context.getContentResolver().query(ContactsContract.Groups.CONTENT_URI, null, where, param, null);
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();

    while (cursor.moveToNext()) {
        int id = cursor.getInt(cursor.getColumnIndex(Groups._ID));
        Uri uri = Uri.parse(Groups.CONTENT_URI + "?" + ContactsContract.CALLER_IS_SYNCADAPTER + "=true");  
        ops.add(ContentProviderOperation.newDelete(ContentUris.withAppendedId(uri, id))
                .withYieldAllowed(true).build());
    }
    
    try {
        if ((ops != null) && (ops.size() > 0)) {
            context.getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
            return true;
        }
    } catch (Exception e) {
        e.printStackTrace();
        return false;
    } finally {
        if (cursor != null) {
            cursor.close();
        }
    }
    
    return false;
    
  }
3.data表操作

批量插入、批量删除、根据Group_id批量插入(其中解决批量插入时,联系人数据过大导致插入失败问题)
批量插入
public void batchAddContact(Context context, Vector<Contacts> list, int groupsId) {
Log.i(TAG,"start insert DataBase, Contacts size ==" + list.size()+ "groupsId =" +groupsId);
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
int rawContactInsertIndex = 0;
int count = 0;
int startIndex = 0;
String numbers;
int[] types;
for(Contacts contacts : list) {
rawContactInsertIndex = ops.size();
ops.add(ContentProviderOperation
.newInsert(RawContacts.CONTENT_URI)
.withValue(RawContacts.ACCOUNT_TYPE, null)
.withValue(RawContacts.ACCOUNT_NAME, null)
.withValue(RawContacts.AGGREGATION_MODE,
RawContacts.AGGREGATION_MODE_DISABLED)
.withYieldAllowed(true).build());

          //添加姓名
          ops.add(ContentProviderOperation
                  .newInsert(Data.CONTENT_URI)
                  .withValueBackReference(Data.RAW_CONTACT_ID,
                      rawContactInsertIndex)
                  .withValue(Data.MIMETYPE, StructuredName.CONTENT_ITEM_TYPE)
                  .withValue(StructuredName.DISPLAY_NAME, contacts.getName())
                  .withYieldAllowed(true).build());
          
          ops.add(ContentProviderOperation
                  .newInsert(Data.CONTENT_URI)
                  .withValueBackReference(Data.RAW_CONTACT_ID,
                      rawContactInsertIndex)
                  .withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE)
                  .withValue(Phone.NUMBER, contacts.getNum())
                  .withValue(Phone.TYPE, Phone.TYPE_MOBILE)
                  .withYieldAllowed(true).build());
          
          ops.add(ContentProviderOperation
                  .newInsert(Data.CONTENT_URI)
                  .withValueBackReference(Data.RAW_CONTACT_ID,
                      rawContactInsertIndex)
                  .withValue(Data.MIMETYPE, GroupMembership.CONTENT_ITEM_TYPE)
                  .withValue(GroupMembership.GROUP_ROW_ID,
                      String.valueOf(groupsId))
                  .withYieldAllowed(true).build());
      
      //两百条同步一次
      count++;
      Log.i(TAG, "count ="+count);
      if(count == 200) {
          if(ops !=null) {
              //真正添加
              try{
                  context.getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
                  Log.e(TAG, "applyBatch contacts success >200!");
              } catch (RemoteException e) {
                  e.printStackTrace();
                  Log.e(TAG, "applyBatch error!");
              } catch (OperationApplicationException e) {
                  e.printStackTrace();
                  Log.e(TAG,"applyBatch error!");
              }
              
          }
          count = 0;
          ops.clear();
          Log.i(TAG, "add 200 size!!!!");
          }
      }
      
      if(ops != null) {
            //真正添加
              try{
                  context.getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
                  Log.e(TAG, "applyBatch contacts success!");
              } catch (RemoteException e) {
                  e.printStackTrace();
                  Log.e(TAG, "applyBatch error!");
              } catch (OperationApplicationException e) {
                  e.printStackTrace();
                  Log.e(TAG,"applyBatch error!");
              }
              Log.i(TAG, "add stop");
         }
      
      Log.i(TAG, "add success ok !!!!!");
 
   }  

批量删除
public boolean delContactsFromSystem(final Context context, int idd) {
String where = ContactsContract.CommonDataKinds.GroupMembership.GROUP_ROW_ID + " = ? ";
String[] param = new String[] { idd + "" };
Cursor cursor = context.getContentResolver().query(ContactsContract.Data.CONTENT_URI, null, where, param, null);
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
L.i(TAG, "cursor"+cursor);
while (cursor.moveToNext()) {
int id = cursor.getInt(cursor.getColumnIndex(Data.RAW_CONTACT_ID));
L.i(TAG, "strid == "+id);
ops.add(ContentProviderOperation.newDelete(ContentUris.withAppendedId(RawContacts.CONTENT_URI, id))
.withYieldAllowed(true).build());
}

    try {
        if ((ops != null) && (ops.size() > 0)) {
            context.getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
            Log.i(TAG, "delContactsFromSystem OK!");
            return true;
        }
    } catch (Exception e) {
        e.printStackTrace();
        return false;
    } finally {
        if (cursor != null) {
            cursor.close();
        }
    }
    
    return false;
    
  }
search_index表信息.png
data表信息.png
groups表信息 .png
calls表信息.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,905评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,140评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,791评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,483评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,476评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,516评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,905评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,560评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,778评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,557评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,635评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,338评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,925评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,898评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,142评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,818评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,347评论 2 342

推荐阅读更多精彩内容