show/hide this revision's text 2 added 714 characters in body

Have you profiled the code and actually found it to be a problem? Something is going to have to loop... are you really sure this is a bottleneck in your code?

Having said all that, you should be able to use a FloatBuffer which I suspect does what you want. Unfortunately Sun's JavaDoc is down, so I can't easily link to or check the documentation at the minute.

To use a FloatBuffer, you'd probably want to:

  • Create a FileChannel associated with the file (e.g. with FileInputStream.getChannel)
  • Create a ByteBuffer
  • Create a FloatBuffer wrapping the ByteBuffer, with ByteBuffer.asFloatBuffer
  • Read into the ByteBuffer with FileChannel.read(byteBuffer)
  • Read from the FloatBuffer

I'm not particularly familiar/comfortable with java.nio, so I hope this is all correct - but it's likely to be pretty fiddly. Your current loop is almost certainly simpler, so I strongly suggest you check the performance of that first! You might want to wrap your current FileInputStream in a BufferedInputStream, btw.

show/hide this revision's text 1

Have you profiled the code and actually found it to be a problem? Something is going to have to loop... are you really sure this is a bottleneck in your code?

Having said all that, you should be able to use a FloatBuffer which I suspect does what you want. Unfortunately Sun's JavaDoc is down, so I can't easily link to or check the documentation at the minute.