How to best serialize a java.awt.Image?

前端 未结 3 1295
梦谈多话
梦谈多话 2020-12-18 23:43

I have a Serializable object which is supposed to hold a java.awt.Image as its member. How should I go about serializing it? (Edited from a not so clear first version, s

3条回答
  •  情歌与酒
    2020-12-19 00:40

    ImageIcon implements Serializable and it can be used to wrap an Image class

    http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/ImageIcon.html

提交回复
热议问题