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
2 answers

add empty line between group of items in string

I know this is probably one of dumbest questions ever but my brain seems off. I have this method which makes a string out of vCard: public static String process(String vCard) { ArrayList> vCardData = parseData(vCard); …
Marko Niciforovic
  • 3,561
  • 2
  • 21
  • 28
0
votes
1 answer

Prevent duplicate contacts while adding from .vcf of all contacts using method ABPersonCreatePeopleInSourceWithVCardRepresentation

I am using the following code to create a V-card representation for all my contacts. ABAddressBookRef addressBook = ABAddressBookCreate(); //------------------------------------------------- create vcf…
user2435304
0
votes
0 answers

Open vCard files from browser on Android?

I would like to skip going to downloads folder to get load a vCard from the browser. What I have in mind is something like having Download vCard that will it pop up the Contacts? I want android to prompt "complete…
Luis LL
  • 2,912
  • 2
  • 19
  • 21
0
votes
2 answers

unix: counting samples with two variants or a homozygous variant per gene

I have a coding problem beyond my limited skills with unix power tools. I'm looking to count the number of sample with either: i) a homozygous variant in a gene (BB below); or ii) two variants in a gene (2x AB). For example, from: Variant Gene …
R_G
  • 1
0
votes
0 answers

Import vCard from web URI, parse data and display in new view?

I have a list of IDs, each one linked to the web URL of a vCard when clicked. My goal is that when the user clicks on an ID, he will be brought to a new page displaying the vCard data. So onItemClick, parse the vCard data, then display a new view…
misaochan
  • 890
  • 2
  • 8
  • 25
0
votes
2 answers

Parsing vCards on web pages into a MySQL DB

I have a client who is using a separate vCard on a separate page. These are being pasted into a wordpress text field. (Not the most efficient way to maintain a list of people, but I won't editorialize after the fact.) My mission is to write…
William Koplitz
  • 99
  • 1
  • 10
0
votes
1 answer

import and export of contact on windows phone 8

As far as i was able to find out there is two way how to get contacts on Windows phone 8. You can use either Windows.Phone.UserData at its classes and methods or Windows.Phone.PersonalInformation and its classes and methods. With UserData i have no…
Tomas Kosar
  • 394
  • 1
  • 10
  • 23
0
votes
2 answers

VCF file stream to c#

I have a VCF file that contains my entire phonebook. I open it with Notepad and transferring data to windows form in c# via StreamReader. Some of vcard entries contains a row…
Sertan Pekel
  • 593
  • 2
  • 5
  • 23
0
votes
0 answers

vcard file generated from php not accepted as valid

raI setting up a script to generate vcard files from info in a wordpress custom post. It seems to work, but the resulting file is not accepted as valid by 'Contacts' on mac. This is the file content: BEGIN:VCARD VERSION:3.0 N:Hans…
hal
  • 33
  • 1
  • 4
0
votes
1 answer

vCards compatible with all smartphones

I have a website where the user can download a vCard for each represented contact. Works great on desktop, but does not work on (all) smartphones. Is there any way to make a vCard compatible to all major smartphone operating systems? Thanks in…
MarioHofer
  • 21
  • 5
0
votes
1 answer

EXC_BAD_ACESS on importing a vcf vcard file

I am retrieving vcard data from a vcf file from the app documents directory into a String. The string is fine but ABPersonCreatePeopleInSourceWithVCardRepresentation throws BAD_ACCESS error. Heres the code... ABRecordRef defaultSource =…
Akash Malhotra
  • 1,106
  • 1
  • 17
  • 30
0
votes
1 answer

Sending a contact from an iOS app via bluetooth

I am trying to allow a user, who is running my app, to send a contacts vcard (vcf) via bluetooth to another iOS device. The problem is, that the receiving device should not be required to run the same app. Is there a possibiliy to accomplish…
a.barth
  • 45
  • 1
  • 1
  • 7
0
votes
1 answer

how to open .vcf file and upload to the server?

I am developing an android app in which there is an edittext and two buttons one is for attching .vcf file and other is for sending .vcf file to email id entered in edittext. All I need to select .vcf file from sdcard and get its path back so that…
Baby Be'el
  • 234
  • 1
  • 4
  • 12
0
votes
2 answers

Regular expression help for vcf file

I have contacts in single vcf file as BEGIN:VCARD VERSION:3.0 FN:XYZ N:XYZ;;;; TEL;TYPE=CELL:0123456789 END:VCARD I used vcard splitter to split them into vcf files with single contact so that I can add them on my s60 nokia phone. Since the FN and…
fz8975
  • 45
  • 1
  • 8
0
votes
2 answers

Windows Phone: Parse a VCard String

I have a VCard String that I want to parse and insert to the phone's contacts store. I checked this link http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj207024(v=vs.105).aspx#BKMK_UsingtheRemoteIdHelperclass and found the following…
Mina Wissa
  • 10,923
  • 13
  • 90
  • 158