为什么要以以下方式打开 FileChannel:
FileChannel.open(path,StandardOpenOption.READ,StandardOpenOption.APPEND);
给出一个例外?
我知道它是由 API 指定的。但是我想知道为什么它允许与 READ、WRITE 组合使用,而不是与 READ 和 APPEND 组合使用。
提前致谢。
为什么要以以下方式打开 FileChannel:
FileChannel.open(path,StandardOpenOption.READ,StandardOpenOption.APPEND);
给出一个例外?
我知道它是由 API 指定的。但是我想知道为什么它允许与 READ、WRITE 组合使用,而不是与 READ 和 APPEND 组合使用。
提前致谢。