gpt4 book ai didi

java - 如何将不可序列化的对象转换为字节数组?

转载 作者:行者123 更新时间:2023-12-04 17:07:10 25 4
gpt4 key购买 nike

我正在尝试使用 javax.crypto.Cipher.doFinal(byte[]) 方法来加密对象。但是,出于安全原因,该对象不能序列化。
那么,如何在不序列化的情况下将对象转换为字节数组呢?

--更新

使用序列化是使用此 Cipher 方法的唯一方法吗?因为据我所知,重要的数据不应该是可序列化的。

最佳答案

我使用了 com.fasterxml.jackson.databind.ObjectMapper。

  private static byte[] serialize(Object obj) throws IOException {
ByteArrayOutputStream os = new ByteArrayOutputStream();
ObjectMapper mapper = new ObjectMapper();
mapper.enable(SerializationFeature.INDENT_OUTPUT);
mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
mapper.writeValue(os, obj);

return os.toByteArray();
}

关于java - 如何将不可序列化的对象转换为字节数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2563340/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com