这是indexloc提供的服务,不要输入任何密码
Skip to content
Dirkster99 edited this page Sep 4, 2018 · 4 revisions

Welcome to the Simple-Contacts wiki!

Adding categories into VCard:

https://github.com/mangstadt/ez-vcard/blob/master/src/main/java/ezvcard/property/Categories.java

VCard vcard = new VCard();

Categories categories = new Categories();
categories.getValues().add("Developer");
categories.getValues().add("Java coder");
categories.getValues().add("Ladies' man");
vcard.setCategories(categories);
Clone this wiki locally