当前位置: 技术问答>java相关
如何读取一个RandomAccessFile文件中的一部分数据?
来源: 互联网 发布时间:2015-04-30
本文导语: RandomAccessFile中的read(byte[] b); 和read(byte[] b, int off, int len) 方法返回的是int值,从此往下我怎么能把读出的数据输出来呀? | 用这个: ... byte[] bytes = new byte[18]; int n = raf.read(bytes); ...
RandomAccessFile中的read(byte[] b);
和read(byte[] b, int off, int len)
方法返回的是int值,从此往下我怎么能把读出的数据输出来呀?
和read(byte[] b, int off, int len)
方法返回的是int值,从此往下我怎么能把读出的数据输出来呀?
|
用这个:
...
byte[] bytes = new byte[18];
int n = raf.read(bytes);
System.out.println(new String(bytes,2,8));
...
Good luck!
...
byte[] bytes = new byte[18];
int n = raf.read(bytes);
System.out.println(new String(bytes,2,8));
...
Good luck!
|
郁闷??
同意楼上
up :)
同意楼上
up :)