简体   繁体   中英

Fastest way to write a FloatBuffer or Float(float) array to a file in Java

I've got a bunch of float data in a FloatBuffer which needs to be written to a file (without it taking three minutes). Currently a DataOutputStream is used to write the FloatBuffer element by element to a file. This is slow. Preferably, I'd like to be using a FileChannel , but I hit a snag since it seems a FloatBuffer can't be converted to a ByteBuffer and bytes are what the FileChannel needs in order to write data.

Instead of using FoatBuffers as my data source, I could easily be using an array. But I can't easily use a ByteBuffer/array instead.

Any insight into this problem would be much appreciated. Thanks.

Instead of starting off with a FloatBuffer , could you create a ByteBuffer to use for writing to the FileChannel , then use ByteBuffer.asFloatBuffer , write into that FloatBuffer however you're currently doing it, and then write out the ByteBuffer which will then contain the relevant information?

Personally I've always found java.nio rather confusing, but this feels like it probably should work...

EDIT: Another user tried this, and found it not to work:

However, asFloatBuffer() will not work because hasArray() will be false. In short, the following does not work (neither allocate , nor allocateDirect will work):

 ByteBuffer.allocate(amount * 4).asFloatBuffer().asArray()

I don't have the time to investigate alternatives right now, unfortunately.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM