Export the Contacts as VCF file

前端 未结 8 681
梦毁少年i
梦毁少年i 2020-12-01 03:16

I want to export the Phone contacts to External storage area. I didn\'t work with this type of method. Anyone guide me to do this?

8条回答
  •  借酒劲吻你
    2020-12-01 03:44

    Try out this. its work for me to create a .vcf file of all contact and stored it into SDCARD.

    make sure all permission are give properly.

    public static void getVCF() 
    
    {
    
     final String vfile = "POContactsRestore.vcf";
    
     Cursor phones = mContext.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null, null, null);
    
     phones.moveToFirst();
       for(int i =0;i

提交回复
热议问题