public final byte[] getParam(String commandName,String memLocation,String dataId){
byte[] result = new byte[9];
//"GET_PARAM", "RAM","WATER_OUTLET_TEMP"
result[0] = START_FRAME.getBytes()[0]; // {
result[1] = START_FRAME.getBytes()[0]; // {
result[2] = Integer.toHexString(commandMap.get(commandName)).getBytes()[0]; // 0xD2
result[3] = Integer.toHexString(dataIdMap.get(dataId)).getBytes()[0]; // 0x1
result[4] = Integer.toHexString(locationMap.get(memLocation)).getBytes()[0]; //0x00
result[5] = Integer.toHexString(commandMap.get(commandName) + dataIdMap.get(dataId) + locationMap.get(memLocation)).getBytes()[0];
result[6] = END_FRAME.getBytes()[0]; // }
result[7] = END_FRAME.getBytes()[0]; // }
result[8] = END_OF_LINE.getBytes()[0]; // \r
return result;
}
For this function certain cases like result[2] where 0xD2 is stored and the bytes value come as [100,23]...the values dont come out as expected then...only the first half is taken... how do i handle such cases?? for result[0] where it is just [123], its fine...