我尝试在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 。
任何帮助?
答案 0 :(得分:3)
你的问题是你在错误的地方写作。使用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。