如何通过 RPC 创建我自己的从应用程序引擎类型到 Android 的序列化器
我想将 Text 数据库类型序列化为 Android 可以反序列化的类型。关于这个主题有什么指示吗?
谢谢, 埃菲
I would like to serialize the Text db type to something that Android can deserialize. Any pointers on the subject ?
Thanks,
Efi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Text 类型只存储一个 Unicode 字符串 - 序列化它只是用给定的编解码器(例如,UTF-8)对其进行编码的问题。如果这就是您需要发送的全部内容,只需在响应正文中以明文形式发送即可。
The Text type just stores a Unicode string - serializing it is just a matter of encoding it in a given codec (eg, UTF-8). If that's all you need to send, just send it in the plain in the body of the response.