Objeto serializable de Java a matriz de bytes

Resuelto iTEgg asked hace 14 años • 13 respuestas

Digamos que tengo una clase serializable AppMessage.

Me gustaría transmitirlo a byte[]través de sockets a otra máquina donde se reconstruye a partir de los bytes recibidos.

¿Cómo podría lograr esto?

iTEgg avatar May 15 '10 01:05 iTEgg
Aceptado

Prepare la matriz de bytes para enviar:

ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream out = null;
try {
  out = new ObjectOutputStream(bos);   
  out.writeObject(yourObject);
  out.flush();
  byte[] yourBytes = bos.toByteArray();
  ...
} finally {
  try {
    bos.close();
  } catch (IOException ex) {
    // ignore close exception
  }
}

Cree un objeto a partir de una matriz de bytes:

ByteArrayInputStream bis = new ByteArrayInputStream(yourBytes);
ObjectInput in = null;
try {
  in = new ObjectInputStream(bis);
  Object o = in.readObject(); 
  ...
} finally {
  try {
    if (in != null) {
      in.close();
    }
  } catch (IOException ex) {
    // ignore close exception
  }
}
Taylor Leese avatar May 14 '2010 18:05 Taylor Leese

La mejor forma de hacerlo es utilizar SerializationUtilsApache Commons Lang .

Para serializar:

byte[] data = SerializationUtils.serialize(yourObject);

Para deserializar:

YourObject yourObject = SerializationUtils.deserialize(data)

Como se mencionó, esto requiere la biblioteca Commons Lang. Se puede importar usando Gradle:

compile 'org.apache.commons:commons-lang3:3.5'

experto:

<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>3.5</version>
</dependency>

archivo jar

Y más formas mencionadas aquí.

Alternativamente, se puede importar toda la colección. Consulte este enlace

uris avatar Nov 01 '2012 10:11 uris