Duplicate: http://stackoverflow.com/questions/713162/compare-hexadecimal-values-with-decimal-in-java
hi, i'm implementing x-modem protocol in java,i'm reading serialport and storing in byte array of size 1024. then i have converted data to string i'm getting 133 bytes in a packet,problem is i'm not enable to compare hexadecimal value in string and also in bytearray.i've to find SOH ie 0x01,EOT=0x02 in data,but i'm not getting how to do plz help me i'm in problem,
here is part code:
char SOH=0X01;
public void readResponse() { byte[] buffer = new byte[1024]; int len = -1; String data; try { while ((len = this.getIn().read(buffer)) > -1) { data = new String(buffer,0,len); time = System.currentTimeMillis(); data = new String(buffer, 0, len); System.out.println("Data length is "+data.length()); System.out.println(data); for(int i=0;i
thanks in advance.