gpt4 book ai didi

android - 不制作 Facebook 联系人的 Vcard

转载 作者:行者123 更新时间:2023-11-29 21:47:44 24 4
gpt4 key购买 nike

当我简单查询我的联系人时,列表中显示的所有联系人还包括 facebook 联系人和 Gmail 联系人,但是当我使用此代码时,一些 vcard 是空白的......

            String VCard = "";

Cursor phones = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null, null, null);
phones.moveToFirst();
pDialog.setMax(phones.getCount());
for(int i =0;i<phones.getCount();i++)
{

String lookupKey = phones.getString(phones.getColumnIndex(ContactsContract.Contacts.LOOKUP_KEY));
Uri uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTENT_VCARD_URI, lookupKey);

AssetFileDescriptor fd;
try
{
fd = getContentResolver().openAssetFileDescriptor(uri, "r");
FileInputStream fis = fd.createInputStream();
byte[] buf = new byte[(int) fd.getDeclaredLength()];
fis.read(buf);
VCard += new String(buf);
String y =String.valueOf(i);
publishProgress(y);
phones.moveToNext();
Log.d("Vcard", VCard);
}
catch (Exception e1)
{
// TODO Auto-generated catch block
e1.printStackTrace();
}

}

try {
FileOutputStream mFileOutputStream = new FileOutputStream(file, false);
mFileOutputStream.write(VCard.toString().getBytes());
mFileOutputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

最佳答案

ContactsContract.CommonDataKinds.Phone.CONTENT_URI 是电话的 uri你应该把它改成 android.provider.ContactsContract.Contacts.CONTENT_URI你会得到非空的联系人名片

关于android - 不制作 Facebook 联系人的 Vcard,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15331975/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com