NSData类

作者:追风剑情 发布于:2019-3-4 20:00 分类:Objective-C

NSData提供不可变数据缓冲区。

使用文件时,需要频繁地将数据读入到一个临时存储区,这个临时存储区通常称为缓冲区。当收集数据,以便随后将这些数据输出到文件中时,通常也使用存储区。Foundation的NSData类提供了一种简单的方式,它用来设置缓冲区,将文件的内容读入缓冲区,或将缓冲区的内容写到一个文件。对于32位应用程序,NSData缓冲区最多可存储2GB的数据,对于64位应用程序,最多可存储8EB(即,8亿GB)的数据。

示例

  1. #import <Foundation/Foundation.h>
  2.  
  3. int main(int argc, const char * argv[]) {
  4. @autoreleasepool {
  5. NSFileManager *fm;
  6. NSData *fileData;
  7. fm = [NSFileManager defaultManager];
  8. // 读取文件 newfile2
  9. fileData = [fm contentsAtPath: @"newfile2"];
  10. if (fileData == nil) {
  11. NSLog(@"File read failed!");
  12. return 1;
  13. }
  14. // 将数据写入 newfile3
  15. if ([fm createFileAtPath: @"newfile3" contents: fileData attributes: nil] == NO) {
  16. NSLog(@"Coundn't create the copy!");
  17. return 2;
  18. }
  19. NSLog(@"File copy was successful!");
  20. }
  21. return 0;
  22. }

运行测试
111.png

标签: Objective-C

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号