我想知道是否有人这个数字有什么作用,我听说它必须对字节做一些事情?,我真的不知道..有人可以启发我:
public int total_reg() {
try {
int reg;
RandomAccessFile file = new RandomAccessFile(Ruta, "rw");
reg = (int) file.length();
file.close();
return (int) reg / 684; //<---HERE WHAT IS THIS
} catch (IOException e) {
return 0;
}
}