菜鸟教程小白 发表于 2022-12-13 11:39:17

ios - dataWithContentsOfFile 返回 null


                                            <p><pre><code>NSString *path = dict[@&#34;fileURL&#34;];
NSData *imageData = ;
</code></pre>

<p>imageData 为空</p>

<pre><code>dict[@&#34;fileURL&#34;] =
/var/mobile/Containers/Data/Application/0906AB53-CE1F-45EF-8E00-9D0B7C98956C/Documents/ccc/image/1446625127.png
</code></pre>

<p>我下载了设备容器并且图像确实存在。
怎么了?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>检索您的文件失败。使用 <code>-dataWithContentsOfFile:options:error:</code> 找出失败的原因。</p>

<pre><code>NSError* error = nil;
NSString *path = dict[@&#34;fileURL&#34;];
NSData *data = ;

if (data == nil)
{
   NSLog(@&#34;Failed to read file, error %@&#34;, error);
}
else
{
    // parse the value
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - dataWithContentsOfFile 返回 null,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/33517464/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/33517464/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - dataWithContentsOfFile 返回 null