Why opening a FileChannel in the following way:
FileChannel.open(path,StandardOpenOption.READ,StandardOpenOption.APPEND);
gives an exception?
I know that it's specified by the API. However I would like to know why it's allowed with the combination of READ, WRITE and it is not with READ and APPEND.
Thanks in advance.