I hope you can help me I have been trying for about 5 hours now to do this ha ha. What I need to do is read in a file backwards. What I would like to be able to do is read the file backwards then as is moves backwards see if the value = G or in hex 47 then see if the next value = N or in hex 4E and then see if the next value = P. I'm currently using the binary IO to read in and then using...
Here is a link to an image which will better show what i mean.. http://www.facebook.com/photo.php?pid=2189508&l=92393dfccb&id=1283154964
sorry I'm not allowed to upload photos
String s = Integer.toHexString(hexIn);
if(s.length() < 2){
s = "0" + Integer.toHexString(hexIn);
}
to make sure the hex does not miss any zeros on the end (which I found on this site :) ) I hope this makes sense, thanks for taking the time to read this and thanks even more if you help me :)