将字节数组写入Google云端存储后获取blobKey

时间:2014-03-02 17:26:53

标签: java google-cloud-storage

我正在将图像中的字节数组写入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();

1 个答案:

答案 0 :(得分:1)

这个问题已经回答了这个问题的答案: Storing rotated / flipped images in Google App Engine