I read the following string from command line(example):
abcgefgh0111010111100000
I process this as a stream to arrive at the first position which is a binary( in this case it is position 9). The code is as follows:
String s=args[0];
ByteArrayInputStream bis=new ByteArrayInputStream(s.getBytes());
int c;
int pos=0;
while((c=bis.read())>0)
{
if(((char)c)=='0' || ((char)c)=='1') break;
pos++;
}
bis.mark(pos-1);\\this does not help
bis.reset();\\this does not help either
System.out.println("Data begins from : " + pos);
byte[] arr=new byte[3];
try{
bis.read(arr);
System.out.println(new String(arr));
}catch(Exception x){}
Now the Arraystream would start reading from position 10('1').
How do I make it recede back by one position to actually start reading again from the first binary digit('0') at position 9.
bis.mark(pos-1)
or reset does not help.
Follow
bis.mark(pos-1)
, withbis.reset()
.reset() will position the stream's read cursor at the last marked position (
pos-1
in this case.)From doc:
Rewrite your loop like so:
This code stores the position of the last read byte. Your code wasn't working before because it was storing the position after the byte you wanted was read.