gpt4 book ai didi

iphone - 通过编码下载文件

转载 作者:行者123 更新时间:2023-11-29 05:05:14 25 4
gpt4 key购买 nike

我想在我的应用程序中保存一个用代码创建的文件:

NSArray *arrayPathsForImg =
NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask,
YES);

NSString *pathForImg = [arrayPathsForImg objectAtIndex:0];
pathForImg = [pathForImg stringByAppendingPathComponent:@"a.txt"];
[self.importUrlData writeToFile:pathForImg atomically:YES];

现在我想将其下载到我的 iPhone 上吗?

最佳答案

如果您的意思是“读取”文件:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"a.txt"];

现在使用 initWithContentsOfFile: 方法。例如,我使用上面的代码从属性列表中读取数据,并使用以下代码将数据放入 NSDictionary:

NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:filePath];

关于iphone - 通过编码下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5676248/

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