我需要在附加模式下在文件中写入数据(GCS BUCKET文件)但是我遇到错误
java.lang.UnsupportedOperationException: APPEND
我写的代码是:
FileSystem fs = FileSystems.getFileSystem(URI.create("gs://test"));
byte[] data = "hello world".getBytes(StandardCharsets.UTF_8);
Path path = fs.getPath("/Testing");
Files.write(path, data,StandardOpenOption.CREATE,StandardOpenOption.APPEND );
这是一个Bug还是我错过了什么?