我想为一个对象生成一个.vcf文件,其中包含姓名,图片,电话号码,传真号码,电子邮件ID,地址等联系信息。此对象未添加到手机的通讯录中,但它是存储在我的应用程序中
生成.vcf文件后,我可以像这样发送此vcard
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse("**generated.vcf**"), "text/x-vcard");
startActivity(i);
但是我没有得到如何获得这个生成的.vcf文件?
答案 0 :(得分:23)
生成.vcf文件实际上非常容易。看看VCF format - 这是一个简单的文本文件。您需要做的就是创建文本文件并使用VCF字段将信息写入其中。你最终会得到这样的东西:
Person p = getPerson();
File vcfFile = new File(this.getExternalFilesDir(null), "generated.vcf");
FileWriter fw = new FileWriter(vcfFile);
fw.write("BEGIN:VCARD\r\n");
fw.write("VERSION:3.0\r\n");
fw.write("N:" + p.getSurname() + ";" + p.getFirstName() + "\r\n");
fw.write("FN:" + p.getFirstName() + " " + p.getSurname() + "\r\n");
fw.write("ORG:" + p.getCompanyName() + "\r\n");
fw.write("TITLE:" + p.getTitle() + "\r\n");
fw.write("TEL;TYPE=WORK,VOICE:" + p.getWorkPhone() + "\r\n");
fw.write("TEL;TYPE=HOME,VOICE:" + p.getHomePhone() + "\r\n");
fw.write("ADR;TYPE=WORK:;;" + p.getStreet() + ";" + p.getCity() + ";" + p.getState() + ";" + p.getPostcode() + ";" + p.getCountry() + "\r\n");
fw.write("EMAIL;TYPE=PREF,INTERNET:" + p.getEmailAddress() + "\r\n");
fw.write("END:VCARD\r\n");
fw.close();
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(vcfFile), "text/x-vcard");
startActivity(i);
(请注意,此代码将放置在活动中。如果它不在活动中,请使用this
的实例替换getExternalFilesDir
前面的Context
。)< / p>
根据需要,您可以拥有更少的字段。如果字段值中包含,
,;
或\
个字符,则需要使用\
进行转义;要将换行符添加到值中,将\\n
写入文件(即文件本身必须包含\n
,第二个斜杠用于转换换行符中的斜杠)。
这段代码很粗糙,但应该让你开始。再看看VCF的格式并从那里开始。
更新:感谢@Michael指出我原来答案中的错误。
答案 1 :(得分:4)
您可能有兴趣使用vCard库而不是手动创建vCard字符串。这样,您不必担心所有格式详细信息,例如要转义的字符。 ez-vcard就是这样一个图书馆。
使用ez-vcard,@ AleksG的代码示例中的vCard将如下生成:
Person p = getPerson();
File vcfFile = new File(this.getExternalFilesDir(null), "generated.vcf");
VCard vcard = new VCard();
vcard.setVersion(VCardVersion.V3_0);
StructuredNameType n = new StructuredNameType();
n.setFamily(p.getSurname());
n.setGiven(p.getFirstName());
vcard.setStructuredName(n);
vcard.setFormattedName(new FormattedNameType(p.getFirstName() + " " + p.getSurname()));
OrganizationType org = new OrganizationType();
org.addValue(p.getCompanyName());
vcard.setOrganization(org);
vcard.addTitle(new TitleType(p.getTitle()));
TelephoneType tel = new TelephoneType(p.getWorkPhone());
tel.addType(TelephoneTypeParameter.WORK));
tel.addType(TelephoneTypeParameter.VOICE));
vcard.addTelephoneNumber(tel);
tel = new TelephoneType(p.getHomePhone());
tel.addType(TelephoneTypeParameter.HOME));
tel.addType(TelephoneTypeParameter.VOICE));
vcard.addTelephoneNumber(tel);
AddressType adr = new AddressType();
adr.setStreetAddress(p.getStreet());
adr.setLocality(p.getCity());
adr.setRegion(p.getState());
adr.setPostalCode(p.getPostcode());
adr.setCountry(p.getCountry());
adr.addType(AddressTypeParameter.WORK);
vcard.addAddress(adr);
EmailType email = new EmailType(p.getEmailAddress());
email.addType(EmailTypeParameter.PREF);
email.addType(EmailTypeParameter.INTERNET);
vcard.addEmail(email);
vcard.write(vcfFile);
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(vcfFile), "text/x-vcard");
startActivity(i);