public class Splitinit {
private String filename;
private long lenth;
private String destpath;
private String filePath;
private long blockSize;
private int size;
List<String> blockpath;
public Splitinit(){
blockpath=new ArrayList<String>();
}
public Splitinit(String filePath,String destpath){
this(filePath,1024,destpath);
}
public Splitinit(String filePath,long blockSize,String destpath){
this();
this.blockSize=blockSize;
this.filePath=filePath;
this.destpath=destpath;
init();
}
public void init(){