Java:对象到字节[]和字节[]到对象转换器(用于东京内阁)
我需要将对象转换为 byte[] 以存储在 Tokyo Cabinet 键值存储中。 从键值存储中读取时,我还需要将 byte[] 解字节为对象。
有没有任何软件包可以帮助我完成这项任务?还是自己实施的最佳解决方案?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
如果您的类扩展了
Serialized
,您可以通过ByteArrayOutputStream
写入和读取对象,这就是我通常所做的。If your class extends
Serializable
, you can write and read objects through aByteArrayOutputStream
, that's what I usually do.使用 commons-lang。
Use
serialize
anddeserialize
methods inSerializationUtils
from commons-lang.您可以使用对象映射器
You can use ObjectMapper
您可以看看 Hector 如何为 Cassandra 执行此操作,其目标是相同的 - 将所有内容与
byte[]
相互转换,以便从 NoSQL 数据库存储/检索 - 参见此处。对于基本类型(+String),有特殊的序列化器,否则有通用的ObjectSerializer
(期望Serialized
,并使用ObjectOutputStream
)。当然,您可以仅将其用于所有内容,但序列化形式中可能存在冗余元数据。我想你可以复制整个包并使用它。
You can look at how Hector does this for Cassandra, where the goal is the same - convert everything to and from
byte[]
in order to store/retrieve from a NoSQL database - see here. For the primitive types (+String), there are special Serializers, otherwise there is the genericObjectSerializer
(expectingSerializable
, and usingObjectOutputStream
). You can, of course, use only it for everything, but there might be redundant meta-data in the serialized form.I guess you can copy the entire package and make use of it.
如果您不想序列化,可以使用对象映射器
我们应该何时实现可序列化接口?
If you do not want to serialize you can use object mapper
When should we implement Serializable interface?