Bad base-64 error(错误的 base-64 错误)
问题描述
我在以下代码中收到java.lang.IllegalArgumentException: bad base-64":
I'm getting a "java.lang.IllegalArgumentException: bad base-64" on the following code:
byte[] msgBytes = Base64.decode(msgStr, Base64.NO_WRAP);
msgString 是一个字符串,就在这一行之前,我检查了 msgStr 的值,它是fl-ILw==".有什么问题吗?
msgString is a String, and right before this line, I check the value of msgStr and it is "fl-ILw==". Is there anything wrong?
谢谢.
推荐答案
根据 RFC 4648(http://www.rfc-editor.org/rfc/rfc4648.txt) '-' 字符不是有效的 Base64 字符,但另一方面对URL 和文件名安全的 Base 64 字母"有效.
According to RFC 4648(http://www.rfc-editor.org/rfc/rfc4648.txt) '-' character is not a valid Base64 character but on the other hand is valid for "URL and Filename safe Base 64 Alphabet".
因此您可以根据字符串的预期格式使用 Base64.URL_SAFE.
So you could use Base64.URL_SAFE depending of the expected format of the string.
这篇关于错误的 base-64 错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:错误的 base-64 错误


基础教程推荐
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01