繁体   English   中英

为什么序列化ImageList不能正常工作

[英]Why serializing an ImageList doesn't work well

我正在使用BinaryFormatter ,序列化一个treeview。 现在我想对ImageList做同样的事情

我使用以下代码进行序列化:

    public static void SerializeImageList(ImageList imglist)
    {
        FileStream fs = new FileStream("imagelist.iml", FileMode.Create);
        BinaryFormatter bf = new BinaryFormatter();
        bf.Serialize(fs, imglist.ImageStream);
        fs.Close();

    }

和这个反序列化:

    public static void DeSerializeImageList(ref ImageList imgList)
    {
        FileStream fs = new FileStream("imagelist.iml", FileMode.Open);
        BinaryFormatter bf = new BinaryFormatter();
        imgList.ImageStream = (ImageListStreamer)bf.Deserialize(fs);
        fs.Close();

    }

但是我在所有键中都得到一个空字符串!

ImgList.Images.Keys

为什么呢?

大多数人不会利用他们的全部资源来交叉引用他们已经知道的东西。 ImageList不能以当前形式序列化,但是您真正想要保存的只有两件事,那就是KeyImage 因此,您可以构建一个中间类来保存它们,该类可以序列化,如以下示例所示:

[Serializable()]
public class FlatImage
{
    public Image _image { get; set; }
    public string _key { get; set; }
}

void Serialize()
{
    string path = Options.GetLocalPath("ImageList.bin");
    BinaryFormatter formatter = new BinaryFormatter();

    List<FlatImage> fis = new List<FlatImage>();
    for (int index = 0; index < _smallImageList.Images.Count; index++)
    {
        FlatImage fi = new FlatImage();
        fi._key = _smallImageList.Images.Keys[index];
        fi._image = _smallImageList.Images[index];
        fis.Add(fi);
    }

    using (FileStream stream = File.OpenWrite(path))
    {
        formatter.Serialize(stream, fis);
    }
}

void Deserialize()
{
    string path = Options.GetLocalPath("ImageList.bin");
    BinaryFormatter formatter = new BinaryFormatter();
    try
    {
        using (FileStream stream = File.OpenRead(path))
        {
            List<FlatImage> ilc = formatter.Deserialize(stream) as List<FlatImage>;

            for( int index = 0; index < ilc.Count; index++ )
            {
                Image i = ilc[index]._image;
                string key = ilc[index]._key;
                _smallImageList.Images.Add(key as string, i);
            }
        }
    }
    catch { }
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM