隨機(jī)流的代碼1
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
public class RandTest03 {
?? ??? ?public static void main(String[] args) throws IOException {
?? ??? ??? ?RandomAccessFile? raf=new RandomAccessFile(new File("src/cn/jd/io/Copy.java"), "r");
?? ??? ??? ?//起始位置
?? ??? ??? ?int beginPos=2;
?? ??? ??? ?//實(shí)際大小
?? ??? ??? ?int actualSize=1026;//我要讀取1026個(gè)字節(jié)
?? ??? ??? ?//隨機(jī)讀取
?? ??? ??? ?raf.seek(beginPos); //從第二個(gè)索引開(kāi)始讀取,記住索引是從0開(kāi)始的
?? ??? ??? ?//讀取??? 讀取方式和字節(jié)流的讀取方式是一樣的
?? ??? ??? ?byte[]? flush=new byte[1024];
?? ??? ??? ?int len=-1;
?? ??? ??? ?while((len=raf.read(flush))!=-1) {
?? ??? ??? ??? ?
?? ??? ??? ??? ?if(len<=actualSize) {//獲取本次讀取的所有內(nèi)容
?? ??? ??? ??? ??? ?System.out.println(new String(flush,0,len));
?? ??? ??? ??? ??? ?actualSize-=len;//還剩余多少字節(jié)需要下次讀取
?? ??? ??? ??? ?}else {
?? ??? ??? ??? ??? ?System.out.println(new String(flush,0,actualSize));
?? ??? ??? ??? ??? ?break;
?? ??? ??? ??? ?}
?? ??? ??? ?}
?? ??? ??? ?
?? ??? ??? ?
?? ??? ??? ?raf.close();
?? ??? ?}
?? ??? ?
}
標(biāo)簽: