0

我有一个 VCF 文件,其中包含我的整个电话簿。我用记事本打开它,并通过 StreamReader 将数据传输到 c# 中的 windows 窗体。一些 vcard 条目包含如下一行:

"N;CHARSET=UTF-8;ENCODING=QUOTED-PRINTABLE:=42=75=72=73=61=6C=C4=B1;=4D=75=73=74=61=66=61;;;"

看起来该行是 UTF-8 代码字符集,但我不知道如何将其转换为字符串。

感谢您的任何建议。

4

2 回答 2

2
using System.Net.Mail;

class Test
{

    public static string QPDecode(String str, String encoding)
    {
        Attachment attachment = Attachment.CreateAttachmentFromString("", "=?" + encoding + "?Q?" + str + "?=");
        return attachment.Name;
    }


    public static void Main(string[] args)
    {

        Console.WriteLine(QPDecode("=42=75=72=73=61=6C=C4=B1;=4D=75=73=74=61=66=61", "UTF-8"));
        //Bursalı;Mustafa

    }

}

如何从您的文件中提取零件"UTF-8""=42=75=72=73=61=6C=C4=B1;=4D=75=73=74=61=66=61"留给您练习:P

于 2013-04-11T10:40:00.553 回答
0

属性值采用quoted-printable 编码,这是一种标准编码机制。您也许可以找到一个可以为您解码的库。另外,试试这个 SO thread

于 2013-04-12T12:53:47.483 回答