Questions tagged [vcf-vcard]

vCard is a file format standard for e-business cards to identify people and organisations.

vCard is a file format standard for e-business cards to identify people and organisations.

They may contain various identification data such as name, address, phone numbers, e-mail addresses, URLs, logos, photographs, audio clips and etc.

705 questions
0
votes
1 answer

PHP MeCard Decoder or MeCard to VCard Converter

I'm working on a QR code parser and I'm wondering if anyone knows of a MeCard library, or code that converts a MeCard to a VCard. If not, is there an official specification doc for MeCard out there? I know NTT DoCoMo created it, but I can't find…
Anthony
  • 5,275
  • 11
  • 50
  • 86
0
votes
1 answer

Export contacts as vcf to SD Card

I've been trying to use the following code to export contacts as a vcf file: b5.setOnClickListener(new OnClickListener() { public void onClick(View v){ getVCF(); } public static void getVCF() { final String vfile =…
user1992169
0
votes
1 answer

Reading a vcf file into an array of strings

Below is a method I call to try and read in a vcf file line by line into an array of strings. internal static void splitUpFile(String fileLocation) { string[] file = System.IO.File.ReadAllLines(fileLocation); …
Peter Djeneralovic
  • 507
  • 1
  • 7
  • 15
0
votes
1 answer

Add item into device Calendar by URL on page

We would like to let a user with mobile device (Notebook/Tablet/Smartphone) add an event to his Calendar by just hitting a button/link/url from our MOBILE WEBSITE. How can we provide this? (We read that this is not possible with an Stock Android…
user1483464
  • 61
  • 2
  • 7
0
votes
1 answer

Send data as Attachment to E-Mail without saving it on sd card

I am working on an application, where I am sending .vcf files to E-Mail as attachment thorugh my application, I have used following code to achieve this, try { path = Environment.getExternalStorageDirectory().toString()+ File.separator…
Sahil Mahajan Mj
  • 11,033
  • 8
  • 53
  • 100
0
votes
1 answer

QRCode AddressBook type String to Vcard

After scanning the "ADDRESSBOOK" type from QR code, the content that I get is the simple string like: Sandeep abc def ;;my new address +908888888888 +901111111111 +902222222222 homeemail@example.com workemail@example.com …
Kanika
  • 10,648
  • 18
  • 61
  • 81
0
votes
1 answer

Can't find vcf file on SDCard Android Emulator

Here is my code to export contacts to VCF file on SDcard. But i can't find vcf on SDCard. Help me find that. Thanks in advance Code to get VCF file: public static void getVCF() { final String vfile = "POContactsRestore.vcf"; Cursor phones =…
Tuan Vu
  • 6,397
  • 2
  • 14
  • 22
0
votes
4 answers

Android read failed exception when trying to read vCard contact data

I'm trying to export my contacts to vCard format with this code : (found here : http://androidcodeexamples.blogspot.in/2012/06/export-contacts-as-vcf-file-in-android.html) Cursor phones = mContext.getContentResolver().query( …
0
votes
1 answer

Exporting iOS vCards without resizing images

My iPhone app is currently backing up users' contacts to .vcf files using the method ABPersonCreateVCardRepresentationWithPeople of AddressBook framework. But this method shrinks the images of the contacts, and I would like to have the option to…
Tanabe
  • 1
  • 1
0
votes
1 answer

Export address book to vcard file

I want to export Address book from iPhoneSDK to vcard file using base64decode. I don't know how iPhoneSDK save file and How to export Contact to Vcard file? Import is easy for me. Somebody can help me with my problem?
user1561904
  • 243
  • 3
  • 11
0
votes
1 answer

IO EXCEPTION importing local .vcf file in android

I'm devoloping an app on Android 2.3.3 that needs to import a local .vcf file. I try to import it launching the intent final String pathDownload = Environment.getExternalStorageDirectory()+"/vcard1.vcf"; Intent i = new Intent(); …
Sfrinz
  • 49
  • 5
0
votes
0 answers

How to split a string into an array based on length

I wanted to split a string of length 200 characters and place them in the request DTO data member noteline1---noteline18. I want to make sure that only 78 characters are allowed and the remaining characters should be moved to another data member(if…
Running Rabbit
  • 2,634
  • 15
  • 48
  • 69
0
votes
1 answer

com.android.contacts.ImportVCardActivity not support in Sony Ericsson Experia mini

I am trying to start Import Contact activity using below code but this code is not working for Sony Ericsson Experia mini mobile hand set which have Android 2.1 I tring both option but not working. Intent i = new Intent(); …
Prashant
  • 17
  • 5
0
votes
3 answers

QR Code with VCards are not working in Blackberry

I generate QR code of a VCard on my site, & now when I read it, it works on Nokia, and Iphone, but it is not working on Black Berry. Bellow is my simple VCard template that I created QRCode of : BEGIN:VCARD VERSION:2.1 N:rahman;sohail;;Mr FN:Sohail…
Sohail
  • 2,058
  • 7
  • 33
  • 57
0
votes
1 answer

Refreshing VCards in OpenFire

I developed a VCard plugin for OpenFire XMPP server with the main purpose of creating/updating and retrieving users' avatars via HTTP requests. Unfortunately, the plugin does not work as expected - VCard changes are propogated into the database…
Alex Fedulov
  • 1,442
  • 17
  • 26