gpt4 book ai didi

java - 在随机访问文件中寻求实现

转载 作者:行者123 更新时间:2023-11-30 10:35:40 25 4
gpt4 key购买 nike

我正在尝试将 RandomAccessFile 用于我的用例。我只想知道 seek 是否总是从头开始计算文件。

  randomAccessFile.seek(100);
randomAccessFile.seek(99);
randomAccessFile.seek(98);

以上三个操作是否从头开始统计字节并设置指针?或者它只是从当前指针返回到一个字符?

我找不到此方法的 native 实现。

最佳答案

Does the above three operations count the bytes from the beginning and set the pointer?

不,它们不会物理地遍历文件开头的所有字节。这就是“随机访问”的全部要点,即它会直接跳转到您要求它去的地方。

关于java - 在随机访问文件中寻求实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41009778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com