Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/06/2011, 04:33
cucuru
 
Fecha de Ingreso: marzo-2009
Mensajes: 509
Antigüedad: 15 años, 8 meses
Puntos: 17
concatenar array de bytes a un byte

hola me gustaría hacer lo siguiente (pero bien hecho):


Código:
byte[] primerByte = {0x12,0x32}
byte[] mensaje = "este  es mi mensaje".getBytes();
		
int longitud = "este es mi mensaje".length() + 1;
byte[] enviar= new byte[longitud];

	    
System.arraycopy(primerByte,0, enviar,0,1);
System.arraycopy(mensaje,0,enviar,1,mensage.length);
EStoy "trucando" arrayCopy, porque me gustaría no tener que inventarme una segunda posición a "primerByte", el 0x32 es una invención para que funcione.

¿Alguna idea?

Gracias!