0
Google Storageからファイルをダウンロードしようとしています。 Google Storageページにアクセスすると、ファイルを正しくダウンロードできます。私はbasicly使用していGoogle Storageでファイルをダウンロードしようとしています。
{
"kind": "storage#object",
"id": "storage-key/file/id",
"selfLink": "link",
"name": "name.xlsx",
"bucket": "bucketName",
"generation": "35452344234",
"metageneration": "1",
"contentType": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"timeCreated": "2017-02-23T12:35:04.258Z",
"updated": "2017-02-23T12:35:04.258Z",
"storageClass": "STANDARD",
"timeStorageClassUpdated": "2017-02-23T12:35:04.258Z",
"size": "4679",
"md5Hash": "k3A546723454afhjgrfKuZw==",
"mediaLink": "medialink",
"crc32c": "U2ajDQ==",
"etag": "DMiAt62dbtICAAE="
}
を::
import com.google.api.services.storage.Storage;
storage.objects().get(bucketName, fileName).executeAsInputStream();
を昨日それが働いていた私がダウンロードし、APIを使用しようと
しかし、そのは、JSONオブジェクトを返します:。 jsonを返す理由のアイデアはありますか?