Вопрос

Is there a way to read a certain number of bytes from a RandomAccessFile in Java?

Это было полезно?

Решение

How about the read(byte[] b) method? From the Java docs..

Reads up to b.length bytes of data from this file into an array of bytes. This method blocks until at least one byte of input is available.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top