我正在将图像中的字节数组写入Google云端存储,如何防止意外覆盖GCS中的其他文件,以及在将此字节数组写入GCS后如何检索blobKey? / p>
GcsFilename fileName = new GcsFilename("my-bucket-name", "someFileName.jpg");
GcsOutputChannel outputChannel = GcsServiceFactory.createGcsService().createOrReplace(fileName, GcsFileOptions.getDefaultInstance());
outputChannel.write(ByteBuffer.wrap(bytearray));
outputChannel.close();