3

我正在尝试使用 IXmlSerializable 接口的实现来序列化 MailMessage 对象。然后使用 Image DataType 将序列化对象存储在数据库中(即使用 SQL Server CE 3.5)。除附件集合外,反序列化一切正常。在反序列化时,图像已附加但未正确显示在电子邮件中,文本文件为空。

这是反序列化的代码(仅附件列表部分)

 // Attachments
            XmlNode attachmentsNode = GetConfigSection(xml, "SerializableMailMessage/MailMessage/Attachments");
            if (attachmentsNode != null)
            {
                foreach (XmlNode node in attachmentsNode.ChildNodes)
                {
                    string contentTypeString = string.Empty;
                    if (node.Attributes["ContentType"] != null)
                        contentTypeString = node.Attributes["ContentType"].Value;

                    ContentType contentType = new ContentType(contentTypeString);

                    MemoryStream stream = new MemoryStream();
                    byte[] data = Encoding.UTF8.GetBytes(node.InnerText);
                    stream.Write(data, 0, data.Length);

                    Attachment attachment = new Attachment(stream, contentType);
                    this.Email.Attachments.Add(attachment);
                }
            }

        private XmlNode GetConfigSection(XmlDocument xml, string nodePath)
        {
            return xml.SelectSingleNode(nodePath);
        }

这是序列化的代码

// Attachments
                if (this.AttachmentList!=null)
                {
                    writer.WriteStartElement("Attachments");

                    foreach (Attachment attachment in this.AttachmentList)
                    {
                        writer.WriteStartElement("Attachment");

                        if (!string.IsNullOrEmpty(attachment.Name))
                            writer.WriteAttributeString("ContentType", attachment.ContentType.ToString());

                        using (BinaryReader reader = new BinaryReader(attachment.ContentStream))
                        {
                            byte[] data = reader.ReadBytes((int)attachment.ContentStream.Length);

                            writer.WriteBase64(data, 0, data.Length);
                        }

                        writer.WriteEndElement();
                    }

                    writer.WriteEndElement();
                }

我从 CodePlex http://gopi.codeplex.com/上的 GOPI C# 邮件发送库中获得了此代码

即使在问题跟踪器中,这也是一个问题。请告知可能出了什么问题。

编辑1:对不起,我已经发布了我的试用代码。现在显示了正确的代码。(在 writer.WriteBase64(data, 0, data.Length) 的序列化代码中;

4

1 回答 1

2

您在序列化时转换为 Base64,但在反序列化时不这样做

byte[] data = Convert.FromBase64String (node.InnerText);
于 2011-02-26T10:57:02.333 回答