Search:

Type: Posts; User: username9000

Search: Search took 0.11 seconds.

  1. Replies
    3
    Views
    2,575

    Re: Reading IEEE float values from files.

    Nvm I found the answer, DataInputStream lets you read all data types including unsigned values. Except I still don't know how to handle big-endian little-endianess.
  2. Replies
    3
    Views
    2,575

    Re: Reading IEEE float values from files.

    I tried this but it only seems to read the number as the ascii representation not the actual value, ie. it reads 0x3132 as 12 from the ascii character for 0x31 for 2 and the ascii character for 0x32...
  3. Replies
    3
    Views
    2,575

    Reading IEEE float values from files.

    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...
Results 1 to 3 of 4