Blob 数据替换 '+'有空间

发布于 2024-12-09 03:30:24 字数 202 浏览 0 评论 0原文

我有一个 iphone 应用程序,可以将图像转换为 NSData &然后转换成base64编码的字符串。

当此编码字符串提交到服务器数据库中的服务器时,存储在服务器上的“+”会转换为“空格”,因此解码器无法正常工作。

我猜问题在于数据库中表的默认编码。目前它是拉丁文,我尝试将其更改为 UTF8 但问题仍然存在。

任何其他编码,请帮忙

I have an iphone app that converts a image into NSData & then converts into base64 encoded string.

When this encoded string is submitted to server in server's database, while storing on server '+' gets converted into 'space' and so the decoder does not work properly.

I guess the issue is with default encoding of table in database. Currently its latin, i tried changing it to UTF8 but problem still exits.

Any other encoding, please help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

埖埖迣鎅 2024-12-16 03:30:24

当然 - 这与编码无关。 POSTGET 参数的格式与 base64 产生冲突。在 http://en.wikipedia.org/wiki/Base64#Variants_summary_table 中,您会看到替代方案 这些变体

之一是“带有 URL 和文件名安全字母表的 Base64 (RFC 4648 'base64url' 编码)" 将 + 替换为 < code>- 和 /_

另一种替代方法是用 %xx 替换有问题的字符 +/= 及其各自的十六进制表示形式 - 但这会使数据不必要地变长。

Of course - that has nothing to do with encoding. It is the format of the POST and GET parameters which creates a clash with base64. In http://en.wikipedia.org/wiki/Base64#Variants_summary_table you see alternatives which are designed to make base64 work with URLs etc.

One of these variants is "Base64 with URL and Filename Safe Alphabet (RFC 4648 'base64url' encoding)" which replaces the + with - and the / with _.

Another alternative would be to replace the offending characters +/= by their respective hexrepresentations with %xx - but that makes the data unnecessarily longer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文