iOS对象序列化

系统对象的归档我就不介绍了,这个不复杂,自己看一下就会了。

我在这里主要介绍自定义对象的归档。

Sample.h文件

  1. //
  2. //  Sample.h
  3. //  Serialization
  4. //
  5. //  Created by 周 敏 on 12-11-1.
  6. //  Copyright (c) 2012年 周 敏. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface Sample : NSObject<NSCoding> {
  10. NSString* name;
  11. int magicNumber;
  12. float shoeSize;
  13. NSMutableArray *subThingies;
  14. }
  15. @property(copy) NSString* name;
  16. @property int magicNumber;
  17. @property float shoeSize;
  18. @property (retain) NSMutableArray *subThingies;
  19. -(id) initWithName:(NSString *)n magicNumber:(int)m shoeSize:(float) ss;
  20. @end

Sample.m文件

  1. //
  2. //  Sample.m
  3. //  Serialization
  4. //
  5. //  Created by 周 敏 on 12-11-1.
  6. //  Copyright (c) 2012年 周 敏. All rights reserved.
  7. //
  8. #import "Sample.h"
  9. @implementation Sample
  10. @synthesize name;
  11. @synthesize magicNumber;
  12. @synthesize shoeSize;
  13. @synthesize subThingies;
  14. -(id) initWithName:(NSString *)n magicNumber:(int)m shoeSize:(float)ss
  15. {
  16. if (self=[super init])
  17. {
  18. self.name = n;
  19. self.magicNumber = m;
  20. self.shoeSize = ss;
  21. self.subThingies = [NSMutableArray array];
  22. }
  23. return (self);
  24. }
  25. -(void) dealloc
  26. {
  27. [name release];
  28. [subThingies release];
  29. [super dealloc];
  30. }
  31. //将对象编码(即:序列化)
  32. -(void) encodeWithCoder:(NSCoder *)aCoder
  33. {
  34. [aCoder encodeObject:name forKey:@"name"];
  35. [aCoder encodeInt:magicNumber forKey:@"magicNumber"];
  36. [aCoder encodeFloat:shoeSize forKey:@"shoeSize"];
  37. [aCoder encodeObject:subThingies forKey:@"subThingies"];
  38. }
  39. //将对象解码(反序列化)
  40. -(id) initWithCoder:(NSCoder *)aDecoder
  41. {
  42. if (self=[super init])
  43. {
  44. self.name = [aDecoder decodeObjectForKey:@"name"];
  45. self.magicNumber = [aDecoder decodeIntForKey:@"magicNumber"];
  46. self.shoeSize = [aDecoder decodeFloatForKey:@"shoeSize"];
  47. self.subThingies = [aDecoder decodeObjectForKey:@"subThingies"];
  48. }
  49. return (self);
  50. }
  51. -(NSString*) description
  52. {
  53. NSString *description = [NSString stringWithFormat:@"%@:%d/%.1f %@",name,magicNumber,shoeSize,subThingies];
  54. return (description);
  55. }
  56. @end

使用模版

  1. NSString *path = [NSString stringWithFormat:@"%@/Documents/archive.dat", NSHomeDirectory()];
  2. Sample *s1 = [[Sample alloc] initWithName:@"thing1" magicNumber:42 shoeSize:10.5];
  3. [s1.subThingies addObject:@"1"];
  4. [s1.subThingies addObject:@"2"];
  5. //序列化
  6. NSData  *data1 = [NSKeyedArchiver archivedDataWithRootObject:s1];//将s1序列化后,保存到NSData中
  7. [s1 release];
  8. [data1 writeToFile:path atomically:YES];//持久化保存成物理文件
  9. //反序列化
  10. NSData *data2 = [NSData dataWithContentsOfFile:path];//读取文件
  11. Sample *s2 = [NSKeyedUnarchiver unarchiveObjectWithData:data2];//反序列化
  12. NSLog(@"%@",s2);

如果是多个这类对象组成的数组,序列化也很简单,只须对这个数组进行序列化。

  1. Sample *s1 = [[Sample alloc] initWithName:@"thing1" magicNumber:42 shoeSize:10.5];
  2. [s1.subThingies addObject:@"1"];
  3. [s1.subThingies addObject:@"2"];
  4. Sample *s2 = [[Sample alloc] initWithName:@"thing2" magicNumber:22 shoeSize:22.2];
  5. [s2.subThingies addObject:@"22"];
  6. [s2.subThingies addObject:@"22"];
  7. NSArray *array = [NSArray arrayWithObjects:s1, s2, nil];
  8. [s1 release];
  9. [s2 release];
  10. NSString *path = [NSString stringWithFormat:@"%@/Documents/archive.dat", NSHomeDirectory()];
  11. //序列化
  12. NSData  *data1 = [NSKeyedArchiver archivedDataWithRootObject:array];
  13. [data1 writeToFile:path atomically:YES];//持久化保存成物理文件
  14. //房序列化
  15. NSData *data2 = [NSData dataWithContentsOfFile:path];//读取文件
  16. NSArray *array2 = [NSKeyedUnarchiver unarchiveObjectWithData:data2];//反序列化
  17. NSLog(@"%@",array2);
上一篇:Java集合类框架的最佳实践有哪些?


下一篇:kafka写入hdfs