You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi all,
I would like to add a custom type to a telephone number:
final Telephone telCAP = new Telephone("123456789");
telCAP.getParameters().setCharset("ISO-8859-1");
telCAP.getParameters().addType("SPÉCciälö"));//
vcard.addTelephoneNumber(telCAP);
but the accents are not encoded, can someone please help me?
Regards
G.
The text was updated successfully, but these errors were encountered:
Unfortunately, there is no way to specify the character set of a parameter value. The CHARSET parameter only applies to property values.
If you want to use characters like the ones in your example inside parameter values, then you'll have to set the encoding of the entire vCard to UTF-8 or something of the sort. For example:
Hi all,
I would like to add a custom type to a telephone number:
but the accents are not encoded, can someone please help me?
Regards
G.
The text was updated successfully, but these errors were encountered: