菜鸟教程小白 发表于 2022-12-13 03:26:52

ios - 正确地将十六进制转换为 base64


                                            <p><p>我正在尝试通过对十六进制字符串进行编码来获取正确的 base64 字符串。当我使用转换器网站时它可以工作,但我的应用程序没有。</p>

<pre><code>NSData* sentData = ;
NSLog (@&#34;%@&#34;,sentData);
NSData* sentDataBase64 = ;
NSLog(@&#34;%@&#34;,]);
</code></pre>

<p>这是我的代码。 <code>combinedHexMessage</code> 在 <code>NSLog</code> 中看起来像这样:</p>

<pre><code>ffd8ffe000104a46494600010101006000600000ffdb004300020101020101020 ...
</code></pre>

<p><code>sentData</code>:</p>

<pre><code>66666438 66666530 30303130 34613436 34393436 30303031 30313031 ...
</code></pre>

<p><code>sentDataBase64</code>:</p>

<pre><code>ZmZkOGZmZTAwMDEwNGE0NjQ5NDYwMDAxMDEwMTAwNjAwMDYwMDAwMGZmZGIwMDQzM ...
</code></pre>

<p>但它应该看起来像:</p>

<pre><code>/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAIBAQIBAQICAgICAgICAwUDAwMDAwYEBAMFB ...
</code></pre>

<p>因为这是我将 <code>hex</code> 字符串粘贴到那里后得到的字符串:</p>

<p> <a href="http://tomeko.net/online_tools/hex_to_base64.php?lang=en" rel="noreferrer noopener nofollow">http://tomeko.net/online_tools/hex_to_base64.php?lang=en</a> </p>

<p>我做错了什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>如果您有一个表示图像的十六进制字符串,您只需将该十六进制字符串转换为 <code>NSData</code></p>

<pre><code>NSString *hexadecimalString = ...
NSData *data = ;
self.imageView.image = ;
</code></pre>

<p><code>dataFromHexadecimalString</code> 可能在 <code>NSString</code> 类别中定义,如下所示:</p>

<pre><code>@implementation NSString (Hexadecimal)

- (NSData *)dataFromHexadecimalString
{
    // in case the hexadecimal string is from `NSData` description method (or `stringWithFormat`), eliminate
    // any spaces, `&lt;` or `&gt;` characters

    NSString *hexadecimalString = &#34; withString:@&#34;&#34; options:NSRegularExpressionSearch range:NSMakeRange(0, )];

    NSMutableData * data = / 2];
    for (NSInteger i = 0; i &lt; ; i += 2) {
      NSString *hexChar = ;
      int value;
      sscanf(, &#34;%x&#34;, &amp;value);
      uint8_t byte = value;
      ;
    }

    return data;
}

@end
</code></pre>

<p>此过程不需要 base-64 转换。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 正确地将十六进制转换为 base64,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/26994429/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/26994429/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 正确地将十六进制转换为 base64