vote up 0 vote down star

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.

flag
Two persons have fixed the formatting and you keep pasting corrected (?) code without formatting, ruining their efforts. You should try and look what the icons above the text area are made for... – PhiLho Apr 6 at 12:23

2 Answers

vote up 1 vote down

Don't use String/char when handling binary data. Use byte[]/byte instead. Fix that before you try to fix any other bugs.

char is a 16-bit value in Java, it's not the same as the C char (which is defined to be a byte). The closest thing to a C char in Java is the byte (which is signed, 'though).

link|flag
vote up 1 vote down

You're comparing bytes with Strings - this is a Bad Thing, as you dont know what encoding Java is using to cnvert a given byte into a textual representation.

Use a ByteBuffer and do comparisons between raw bytes as they are read.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.