Upload photos from Android app to Google Cloud Storage/App Engine - illegal character #39;_#39;(将照片从 Android 应用上传到 Google Cloud Storage/App Engine - 非法字符“_)
问题描述
我在将照片从我的 Android 应用程序上传到 GCS 时遇到问题.我可以上传文本文件,但不能上传照片.我尝试了各种 mime 类型以及不同的 Base64 编码方法(decodeBase64、encodeBase64URLSafeString 等...)
I've having trouble uploading photos from my android app to GCS. I'm able to upload text files but not photos. I've tried various mime-types as well as different Base64 encoding methods (decodeBase64, encodeBase64URLSafeString, etc...)
我觉得我真的很亲近.
这是我收到的错误消息:
This is the error message that I receive:
com.google.appengine.repackaged.org.codehaus.jackson.JsonParseException:[来源:N/A;base64 内容中的非法字符_"(代码 0x5f)行:-1,列:-1]
com.google.appengine.repackaged.org.codehaus.jackson.JsonParseException: Illegal character '_' (code 0x5f) in base64 content at [Source: N/A; line: -1, column: -1]
我查看了编码后的字符串,里面没有任何_".
I looked at the encoded String and there aren't any '_' in there.
安卓代码:
GAE/GCS 代码:
GAE/GCS Code:
提前致谢.
推荐答案
已解决!
我有 2 个问题.
我的字符串编码不正确.当我实际查看输出的 JSON 时,我可以看到字符串中有_".我通过添加行来解决这个问题
I was encoding the string improperly. When I actually looked at the outputted JSON, I could see the there were "_" in the string. I fixed this by using adding the line
字符串 s = Base64.encodeToString(b, Base64.DEFAULT);
String s = Base64.encodeToString(b, Base64.DEFAULT);
我之前尝试过,但图像仍然无法正常显示.
I had tried that before but the image still wouldn't display properly.
在上传到 GCS 之前,我没有将字节数组包装在 ByteBuffer 中:
I wasn't wrapping the byte array in a ByteBuffer, before uploading to GCS:
GcsOutputChannel outputChannel = gcsService.createOrReplace(name, optionsBuilder.build());
outputChannel.write(ByteBuffer.wrap(bytes));outputChannel.close();
GcsOutputChannel outputChannel = gcsService.createOrReplace(name, optionsBuilder.build());
outputChannel.write(ByteBuffer.wrap(bytes));
outputChannel.close();
这篇关于将照片从 Android 应用上传到 Google Cloud Storage/App Engine - 非法字符“_"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!