I have a FloatBuffer of known size and just want to dump the data to a file (in binary) for inspection outside my app. What's the easiest way to do this?
|
|
|
|
|
|
|
UPDATE FOR BINARY OUTPUT:
TEXT OUTPUT: Since you want this to be viewable I assume you want a text file. You'll want to use a PrintStream.
Didn't have time to post a full raw/binary (non-text) version of this. If you want to do that use a FileOutputStream, get the FileChannel, and directly write the FloatBuffer (since it's a ByteBuffer) |
|||
|
|
|
This iterates through the array backed by your buffer and outputs each float. Just replace the text file and floatBuffer with your own parameters.
|
||
|
|
|
|
Asusming you want the data as binary: Start with a If you already have A low performance but easier way would be to use (Watch for endianess, obviously.) |
||
|
|
