菜鸟教程小白 发表于 2022-12-12 18:32:58

ios - 如何在 iPhone 中使用 Base64 解码字符串


                                            <p><p>我得到编码的字符串。字符串最后包含“=”符号。我正在尝试使用 Base64 对其进行解码
但它没有正确解码。这是我的代码:</p>

<pre><code>NSData *decodedData = [ initWithBase64EncodedString:string options:0];
NSString *decodedString = [ initWithData:decodedData encoding:NSUTF8StringEncoding];
NSLog(@&#34;decodedString %@&#34;, decodedString);
</code></pre>

<p>但是,decodedString 是 nil。请帮助我。在此先感谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我能看到的唯一合乎逻辑的解释是您正在解码的字符串是空的,因为这是解码 base64 编码的正确方法。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何在 iPhone 中使用 Base64 解码字符串,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21570190/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21570190/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何在 iPhone 中使用 Base64 解码字符串