siriocra / Magpie

VK statistics program
1 stars 0 forks source link

Use vCard java library #7

Open keers opened 12 years ago

keers commented 12 years ago

http://dma.pixel-act.com/#indexBox seems to be good enough, but no maven repo was found for it. Usage example:

VCardWriter w = new VCardWriter(); VCardImpl card = new VCardImpl();

NameFeature nf = new NameType(); FormattedNameFeature fnf = new FormattedNameType();

fnf.setFormattedName("Sergei");

nf.setGivenName("Sergei");

card.setName(nf); card.setFormattedName(fnf);

w.setVCard(card); String vstring = w.buildVCardString(); System.out.println(vstring);