2

我尝试在 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 。

有什么帮助吗?

4

1 回答 1

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。

于 2012-07-23T09:20:25.720 回答