Android では、オブジェクトをアップロードできます。しかし、ダウンロードしようとすると、getObject.executeMediaAndDownloadTo(out) で次のエラーが発生します。
java.lang.IllegalArgumentException: Type must be in the 'maintype/subtype; parameter=value' format
コードは Google の例からのものです。
Storage.Objects.Get getObject = storage.objects().get("bucket", "myObject");
if (getMetadata == true) {
getObject.setAlt("json"); // Temporary workaround.
StorageObject object = getObject.execute();
} else {
// Downloading data.
out = new ByteArrayOutputStream();
// If you're not in AppEngine, download the whole thing in one request, if possible.
// NOTE: As of right now, this will not retry on retryable failure.
// http://code.google.com/p/google-api-java-client/issues/detail?id=579
getObject.getMediaHttpDownloader().setDirectDownloadEnabled(true);
getObject.executeMediaAndDownloadTo(out);
}