truncate 抽象方法
- int length
将文件截断(或扩展)到 length
字节。
返回一个 Future<RandomAccessFile>
,当截断操作完成时,将完成该随机访问文件。
实现
Future<RandomAccessFile> truncate(int length);
将文件截断(或扩展)到 length
字节。
返回一个 Future<RandomAccessFile>
,当截断操作完成时,将完成该随机访问文件。
Future<RandomAccessFile> truncate(int length);