在类中添加二进制文件
我有实体类型类(可序列化,在运行时加载和保存数据),其中保存用户指定的数据。类中有多种数据类型,我想添加新的图片属性作为二进制类型。如何在类中保存二进制数据,这可能吗?
I have Entity type class(Serializable, loaded and saved data at runtime) where user specified data is kept. There are several data types kept in class and I would like to add new Picture property as binary type. How to hold binary data in class, is that possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
二进制数据最好存储在
byte[]
中。Binary data is best stored in a
byte[]
.