FileInputSream, BufferedInputStream
FileReader, BufferedReader
These classes AFAIK only have read methods which return strings, char arrays or byte arrays, or single bytes. The problem is if I want to read 2 byte floats or 4 byte double precision IEEE floating point numbers, how do I read them and use them in java?? I really don't to read these byte by byte and have to do manual binary number manipulation and reading.
Thanks for reading! Thanks for helpful comments in advance!