Ver Mensaje Individual
  #5 (permalink)  
Antiguo 18/04/2016, 10:46
jalvarino28
 
Fecha de Ingreso: abril-2016
Mensajes: 7
Antigüedad: 8 años, 8 meses
Puntos: 0
Respuesta: concatenacion de variables short

ya lo solucione de la siguiente forma

static short value1 = 0x41bc;
static short value2 = 0x00cd;
static int valor;
static float conv ;


valor = (value2 | (value1 << 16));

val=String.valueOf(valor);

System.out.printf("%h\n", valor);

conv= Float.valueOf(valor);

System.out.println(valor);


ahora si , me imprime el resutado correcto , muchas gracias chuidiang