我尝试在 iPhone 应用程序中使用 fwrite(C 函数)。
出于自定义原因,我不想使用 writeToFile 而是使用 fwrite C 函数。
我在 didFinishLaunchingWithOptions 函数中编写了这段代码:
FILE *p = NULL;
NSString *file= [NSHomeDirectory() stringByAppendingPathComponent"Documents/Hello.txt"];
char buffer[80] = "Hello World";
p = fopen([file UTF8string], "w");
if (p!=NULL) {
fwrite(buffer, strlen(buffer), 1, p);
fclose(p);
}
但我在 fwrite 函数中收到错误 EXC_BAD_ACCESS。
有什么帮助吗?
Best Answer-推荐答案 strong>
你的问题是你写错了地方。使用 NSString 类中提供的函数要简单得多,它允许您写入文件。进入你的应用沙箱的/Documents文件夹(你的应用沙箱是唯一允许你自由写文件的地方)
NSString *stringToWrite = @"TESTING";
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent"Documents/filename.txt"];
[stringToWrite writeToFile:path atomically:YES encoding NSUTF8StringEncoding];
我认为这是最简单的方法。您可以使用 fwrite 进行相同的操作,您只需使用 cstringUsingEncoding 将路径转换为 cstring,如下所示:
NSString *stringToWrite = @"TESTING";
NSString *path = [NSHomeDirectory() stringByAppendingPathComponent"Documents/filename.txt"];
char *pathc = [path cStringUsingEncoding:NSUTF8StringEncoding];
char *stringToWritec = [stringToWrite cStringUsingEncoding:NSUTF8StringEncoding];
注意:我几乎可以肯定苹果使用 UTF8 编码作为文件名。如果没有,请尝试 NSASCIIStringEncoding 和 NSISOLatin1StringEncoding。
关于ios fwrite 函数 EXC_BAD_ACCESS,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11609457/
|