Google云端存储:已上传的图片已损坏

时间:2015-01-13 14:27:28

标签: java image google-cloud-storage

我使用以下代码将图像上传到我的Google云存储中的存储桶:

        File file = new File("test.jpg");

        HttpClient httpclient = new DefaultHttpClient();
        HttpPost httppost = new HttpPost("https://www.googleapis.com/upload/storage/v1/b/imagecachebucket/o?uploadType=media&name=test.jpg&projection=full");
        httppost.setHeader("Content-Type", "image/jpeg");

        FileBody fileB = new FileBody(file, "image/jpeg");

        MultipartEntityBuilder multipartEntity = MultipartEntityBuilder.create();        
        multipartEntity.setMode(HttpMultipartMode.BROWSER_COMPATIBLE);
        multipartEntity.addPart("file", fileB);
        httppost.setEntity(multipartEntity.build());
        System.out.println( "executing request " + httppost.getRequestLine( ) );
        try {
            HttpResponse response = httpclient.execute( httppost );
            System.out.println("response: " + response.getStatusLine().toString());
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        httpclient.getConnectionManager( ).shutdown( );

图像已上传,我可以在云存储浏览器中看到它,但是当我想要查看图像时,图像被破坏,只有非可视图像的标准图标。当我通过云存储浏览器上传图像时,图像会正确上传。

1 个答案:

答案 0 :(得分:3)

您似乎正在进行正好1部分的分段上传,但您已将uploadType指定为" media"。

媒体上传类型适用于您只是上传文件的情况。在这种情况下,Google Cloud Storage希望整个正文都是正在上传的对象。

如果你想进行分段上传,那很好。为此,您应该使用上传类型" multipart。"分段上传需要两部分,第一部分是对象的元数据(权限,自定义用户元数据等),第二部分是数据。

此处有关于每种类型的上传类型的确切文档:https://developers.google.com/api-client-library/php/guide/media_upload

我的HttpClient-fu不是很好,但我认为这是一个"媒体"案件看起来更像是这样:

FileEntity entity = new FileEntity(file, 
ContentType.create("text/plain", "UTF-8"));        
HttpPost httppost = new HttpPost("https://www.googleapis.com/upload/storage/v1/b/imagecachebucket/o?uploadType=media&name=test.jpg&projection=full");
httppost.setEntity(entity);