I use java 6 method readByte() from class randomAccessFile to read text files on linux x64.
I'm looking the end of text line by finding
"0xD" or "0xA"
at the end.
My question is : in case operating system will switch to x32 , will the find still work ?
Maybe better to find characters at the end of text line , like
"\n"
and not bytes ?