我发现,copyToFile()的底层操作系统调用是Libcore.os.read(fd,bytes,byteOffset,byteCount),而transferTo()基于内存映射文件:MemoryBlock.mmap(fd,alignment,size+offset,mapMode);...buffer=map(MapMode.READ_ONLY,position,count);returntarget.write(buffer);Q1:我的发现是对还是错?Q2:是否有任何理由使用FileUtils.copyFile()因为FileChannel.transferTo()似乎应该