3

The Android 2.0 SDK has a import/export option to export or import contacts in VCard format.

Is there any API to achieve this functionality.

Safy
  • 31
  • 1
  • 4

1 Answers1

3

Try such code for export to VCard:

Uri uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_VCARD_URI, lookupKey);
AssetFileDescriptor fd = contentResolver.openAssetFileDescriptor(uri, "r");
FileInputStream fis = fd.createInputStream();
byte[] buf = new byte[(int)fd.getDeclaredLength()];
if (0 < fis.read(buf))
{
   String vCard = new String(buf);
}
Ilya Izhovkin
  • 3,455
  • 4
  • 22
  • 25