gpt4 book ai didi

xml - iPhone 访问本地 XML 文件

转载 作者:数据小太阳 更新时间:2023-10-29 02:59:40 24 4
gpt4 key购买 nike

我有一个从 URL 解析 XML 的 iPhone 应用程序。我的 Resources 目录(在 XCode 中)中有一个我想使用的 sample.xml 文件。

如何在代码中引用这个文件?我已经尝试将 @"sample.xml"作为 URL,但它似乎无法找到它。

最佳答案

首先,请小心将 URL 作为路径传递,反之亦然 - 您可能无法轻松地将两者互换。如果必须,请尝试在文件路径前加上 file:// 前缀。

至于找到路径,您可以使用 NSBundle 方法 pathForResource:ofType: 如下:

NSString *xmlFilePath = [[NSBundle mainBundle] pathForResource:@"sample"
ofType:@"xml"];
NSString *xmlFileContents = [NSString stringWithContentsOfFile:xmlFilePath];

关于xml - iPhone 访问本地 XML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1904527/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com