Open keers opened 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);
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);