我目前正在开发聊天应用程序,我使用以下Vcard存储用户信息。
public void run() {
VCard vcard = new VCard();
vcard.setJabberId(xmppConnection.getUser());
vcard.setNickName(user.getChatId());
vcard.setFirstName(user.getUsername());
vcard.setPhoneHome("CELL", user.getMobileNo()); }
除了上述值,我还想在Vcard中添加新字段,如
vcard.setNotificationType(user.getNotType())
vcard.setAlerts(user.getAlerts())
这可能吗?如果是这样,请帮助我如何做到这一点。 感谢。
答案 0 :(得分:2)
我知道这是一个古老的问题,但也许有人会需要答案..
您可以使用vCard.setField(String field, String value)
例如:
vcard.setField("NotificationType", user.getNotType());
并将其取回:
vcard.getField("NotificationType");