java _io_랜 덤 읽 기 읽 기 흐름 RandomAccessFile
1199 단어 자바
private File f;
//
private String dir;
//
private List list;
//
private int blockSize;
//
private int size;
Public n(File f,String dir,int block Size){this.f=f;this.dir=dir;this.blockSize=blockSize;this.list=new ArrayList;} //private void init(){/총 길이 long len=this.f.length();/블록 this.size=(int)Math.ceil(len*1.0/blockSize);/경로:for(int i=0;i{this.list.add(this.dir+i+this.f.getName());} }//분할:각 블록의 시작 위치 와 크기 를 계산 합 니 다.public void split(){}public void t3(int i,int first,int real)throws IOException{RandomAccessFile raf=new RandomAccessFile(this.f,"r");RandomAccessFile raf2=new RandomAccessFile(this.list.get(i),"rw"); raf.seek(first);//
byte[] flush=new byte[1024];
int len=-1;
while((len=raf.read(flush))!=-1)
{
if(real>1024)
{
raf2.write(flush,0,len);
real-=1024;
}else
{
raf2.write(flush,0,real);
break; // ,
}
raf2.close();
raf.close();
}}public static void main(String[]args){ } } 이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.