分类: iphone2012-05-30 14:50 2484人阅读 评论(1) 收藏 举报

1、首先是往文件里写入数据

WriteFile.h

  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. @class NoteDb;
  4. @interface WriteFile : NSObject<NSStreamDelegate>{
  5. //文件地址
  6. NSString *parentDirectoryPath;
  7. //输出流,写数据
  8. NSOutputStream *asyncOutputStream;
  9. //写数据的内容
  10. NSData *outputData;
  11. //位置及长度
  12. NSRange outputRange;
  13. //数据的来源
  14. NoteDb *aNoteDb;
  15. }
  16. @property (nonatomic,retain) NSData *outputData;
  17. @property (nonatomic,retain) NoteDb *aNoteDb;
  18. //写数据
  19. -(void)write;
  20. @end

实现文件WriteFile.m

  1. #import "WriteFile.h"
  2. #import "NoteDb.h"
  3. @implementation WriteFile
  4. @synthesize outputData,aNoteDb;
  5. -(id)init{
  6. self=[super init];
  7. if (!self) {
  8. [self release];
  9. return nil;
  10. }
  11. outputData=[[NSData alloc]init];
  12. aNoteDb=[[NoteDb alloc]init];
  13. return self;
  14. }
  15. -(void)write{
  16. //NSLog(@"%@",self.aNoteDb);
  17. //沙盒路径
  18. NSArray *paths= NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  19. NSString *documentsDirectory = [paths objectAtIndex:0];
  20. //文件名字是note.txt
  21. NSString *path = [documentsDirectory stringByAppendingPathComponent:@"note.txt"];
  22. [asyncOutputStream release];
  23. parentDirectoryPath = path;
  24. //数据源
  25. NSData *tmpdata = [NSKeyedArchiver archivedDataWithRootObject:self.aNoteDb.noteList];
  26. //self.outputData=[[NSData alloc]initWithData:tmpdata];
  27. self.outputData=tmpdata;
  28. //位置从哪开始
  29. outputRange.location=0;
  30. //创建文件
  31. [[NSFileManager defaultManager] createFileAtPath:parentDirectoryPath
  32. contents:nil attributes:nil];
  33. //初始化输出流
  34. asyncOutputStream = [[NSOutputStream alloc] initToFileAtPath: parentDirectoryPath append: NO];
  35. //回调方法,
  36. [asyncOutputStream setDelegate: self];
  37. //异步处理,
  38. [asyncOutputStream scheduleInRunLoop:[NSRunLoop currentRunLoop]  forMode:NSDefaultRunLoopMode];
  39. //打开异步输出流
  40. [asyncOutputStream open];
  41. }
  42. -(void)stream:(NSStream *)theStream handleEvent:(NSStreamEvent)streamEvent{
  43. // NSLog(@"as");
  44. NSOutputStream *outputStream = (NSOutputStream*) theStream;
  45. BOOL shouldClose = NO;
  46. switch (streamEvent)
  47. {
  48. case NSStreamEventHasSpaceAvailable://读事件
  49. {
  50. //缓冲区
  51. uint8_t outputBuf [1];
  52. //长度
  53. outputRange.length = 1;
  54. //把数据放到缓冲区中
  55. [outputData getBytes:&outputBuf range:outputRange];
  56. //把缓冲区中的东西放到输出流
  57. [outputStream write: outputBuf maxLength: 1];
  58. //判断data数据是否读完
  59. if (++outputRange.location == [outputData length])
  60. {
  61. shouldClose = YES;
  62. }
  63. break;
  64. }
  65. case NSStreamEventErrorOccurred:
  66. {
  67. //出错的时候
  68. NSError *error = [theStream streamError];
  69. if (error != NULL)
  70. {
  71. UIAlertView *errorAlert = [[UIAlertView alloc]
  72. initWithTitle: [error localizedDescription]
  73. message: [error localizedFailureReason]
  74. delegate:nil
  75. cancelButtonTitle:@"OK"
  76. otherButtonTitles:nil];
  77. [errorAlert show];
  78. [errorAlert release];
  79. }
  80. shouldClose = YES;
  81. break;
  82. }
  83. case NSStreamEventEndEncountered:
  84. shouldClose = YES;
  85. }
  86. if (shouldClose)
  87. {
  88. //当出错或者写完数据,把线程移除
  89. [outputStream removeFromRunLoop: [NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
  90. //最后关掉输出流
  91. [theStream close];
  92. }
  93. }
  94. -(void)dealloc{
  95. [outputData release];
  96. [aNoteDb release];
  97. [super dealloc];
  98. }
  99. @end

2、其次是从文件里读出数据

ReadFile.h

  1. #import <Foundation/Foundation.h>
  2. @class NoteDb;
  3. @interface ReadFile : NSObject<NSStreamDelegate>{
  4. //路径
  5. NSString *parentDirectoryPath;
  6. //异步输出流
  7. NSInputStream *asyncInputStream;
  8. //读出来的数据
  9. NSMutableData *resultData;
  10. //返回去的数据
  11. NoteDb *aNoteDb;
  12. }
  13. @property(nonatomic,retain)NoteDb *aNoteDb;
  14. @property (nonatomic, retain) NSMutableData *resultData;
  15. //开始读数据
  16. -(void)read;
  17. //读出来的数据追加到resultData上
  18. - (void)appendData:(NSData*)_data;
  19. //
  20. - (void)dataAtNoteDB;
  21. //返回去的数据
  22. - (NoteDb*)getNoteDb;
  23. @end

实现文件ReadFile.m

  1. #import "ReadFile.h"
  2. #import "NoteDb.h"
  3. #import "NoteList.h"
  4. #import "WriteFile.h"
  5. @implementation ReadFile
  6. @synthesize aNoteDb,resultData;
  7. -(id)init{
  8. self=[super init];
  9. //aNoteDb=[[NoteDb alloc]init];
  10. resultData=[[NSMutableData alloc]init];
  11. return self;
  12. }
  13. -(void)read{
  14. //沙盒路径
  15. NSArray *paths= NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  16. NSString *documentsDirectory = [paths objectAtIndex:0];
  17. //文件名
  18. NSString *path = [documentsDirectory stringByAppendingPathComponent:@"note.txt"];
  19. /*
  20. if(![[NSFileManager defaultManager]fileExistsAtPath:path]){
  21. //如果不存在,就新建
  22. WriteFile *file=[[WriteFile alloc]init];
  23. [file write];
  24. [file release];
  25. }else{
  26. NSLog(@"有note.txt文件");
  27. }
  28. */
  29. [asyncInputStream release];
  30. parentDirectoryPath = path;
  31. //异步输入流初始化,并把赋于地址
  32. asyncInputStream =
  33. [[NSInputStream alloc] initWithFileAtPath: parentDirectoryPath];
  34. //设置代理(回调方法、委托)
  35. [asyncInputStream setDelegate: self];
  36. //设置线程,添加线程,创建线程:Runloop顾名思义就是一个不停的循环,不断的去check输入
  37. [asyncInputStream scheduleInRunLoop:[NSRunLoop currentRunLoop]
  38. forMode:NSDefaultRunLoopMode];
  39. //打开线程
  40. [asyncInputStream open];
  41. }
  42. //追加数据
  43. - (void)appendData:(NSData*)_data{
  44. [resultData appendData:_data];
  45. }
  46. //回调方法,不停的执行
  47. -(void)stream:(NSStream *)theStream handleEvent:(NSStreamEvent)streamEvent{
  48. BOOL shouldClose = NO;
  49. NSInputStream *inputStream = (NSInputStream*) theStream;
  50. //NSLog(@"as");
  51. switch (streamEvent)
  52. {
  53. case NSStreamEventHasBytesAvailable:
  54. {
  55. //读数据
  56. //读取的字节长度
  57. NSInteger maxLength = 128;
  58. //缓冲区
  59. uint8_t readBuffer [maxLength];
  60. //从输出流中读取数据,读到缓冲区中
  61. NSInteger bytesRead = [inputStream read: readBuffer
  62. maxLength:maxLength];
  63. //如果长度大于0就追加数据
  64. if (bytesRead > 0)
  65. {
  66. //把缓冲区中的数据读成data数据
  67. NSData *bufferData = [[NSData alloc]
  68. initWithBytesNoCopy:readBuffer
  69. length:bytesRead
  70. freeWhenDone:NO];
  71. //追加数据
  72. [self appendData:bufferData];
  73. //release掉data
  74. [bufferData release];
  75. }
  76. break;
  77. }
  78. case NSStreamEventErrorOccurred:
  79. {
  80. //读的时候出错了
  81. NSError *error = [theStream streamError];
  82. if (error != NULL)
  83. {
  84. UIAlertView *errorAlert = [[UIAlertView alloc]
  85. initWithTitle: [error localizedDescription]
  86. message: [error localizedFailureReason]
  87. delegate:nil
  88. cancelButtonTitle:@"OK"
  89. otherButtonTitles:nil];
  90. [errorAlert show];
  91. [errorAlert release];
  92. }
  93. shouldClose = YES;
  94. break;
  95. }
  96. case NSStreamEventEndEncountered:
  97. {
  98. shouldClose = YES;
  99. //数据读完就返回数据
  100. [self dataAtNoteDB];
  101. [theStream close];
  102. }break;
  103. }
  104. if (shouldClose)
  105. {
  106. //当文件读完或者是读到出错时,把线程移除
  107. [inputStream removeFromRunLoop: [NSRunLoop currentRunLoop]
  108. forMode:NSDefaultRunLoopMode];
  109. //并关闭流
  110. [theStream close];
  111. }
  112. }
  113. -(void) dataAtNoteDB{
  114. aNoteDb=nil;
  115. aNoteDb=[[NoteDb alloc]init];
  116. aNoteDb.noteList = [NSKeyedUnarchiver unarchiveObjectWithData:resultData];
  117. //NSLog(@"%@",aNoteDb);
  118. /*
  119. for (id tmp in  aNoteDb.noteList.noteArray)
  120. {
  121. NSLog(@"tmp = %@",tmp);
  122. }
  123. */
  124. }
  125. - (NoteDb*)getNoteDb{
  126. return self.aNoteDb;
  127. }
  128. -(void)dealloc{
  129. [aNoteDb release];
  130. [resultData release];
  131. [super dealloc];
  132. }
  133. @end

【转】iphone 输入/输出流异步读写数据的更多相关文章

  1. C++学习笔记10_输入输出流.文件读写

    //从键盘输入到程序,叫标准input:从程序输出到显示器,叫标准output:一并叫标准I/O //文件的输入和输出,叫文件I/O cout<<"hellow word&quo ...

  2. Java基础知识强化之IO流笔记57:数据输入输出流(操作基本数据类型)

    1. 数据输入输出流(操作基本数据类型) (1)数据输入流:DataInputStream DataInputStream(InputStream in) (2)数据输出流:DataOutputStr ...

  3. 序列流、对象操作流、打印流、标准输入输出流、随机访问流、数据输入输出流、Properties(二十二)

    1.序列流 * 1.什么是序列流 * 序列流可以把多个字节输入流整合成一个, 从序列流中读取数据时, 将从被整合的第一个流开始读, 读完一个之后继续读第二个, 以此类推.* 2.使用方式 * 整合两个 ...

  4. 4、BufferedIn(out)putStream--->字节输入/输出流的缓冲区类(高效类:高效率读写)

    前言 字节流一次读写一个数组的速度明显比一次读写一个字节的速度快很多,这是加入了数组这样的缓冲区效果,java本身在设计的时候,也考虑到了这样的设计思想(装饰设计模式后面讲解),所以提供了字节缓冲区流 ...

  5. C++ 输入输出流 文本文件 二进制文件读写

    文本文件/ASCII文件(能直接显示内容,费存储空间):文件中每一个字节中均以ASCII代码形式存放数据,即一个字节存放一个字符,这个文件就是ASCII文件或称字符文件. 二进制文件(不能显示内容,节 ...

  6. DataInputStream 数据类型数据输入输出流

    package IOliu; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.FileI ...

  7. java.IO输入输出流:过滤流:buffer流和data流

    java.io使用了适配器模式装饰模式等设计模式来解决字符流的套接和输入输出问题. 字节流只能一次处理一个字节,为了更方便的操作数据,便加入了套接流. 问题引入:缓冲流为什么比普通的文件字节流效率高? ...

  8. Java中IO流,输入输出流概述与总结

    总结的很粗糙,以后时间富裕了好好修改一下. 1:Java语言定义了许多类专门负责各种方式的输入或者输出,这些类都被放在java.io包中.其中, 所有输入流类都是抽象类InputStream(字节输入 ...

  9. JAVA输入输出流

    概述: 各种流类型(类和抽象类)都位于位于java.io包中,各种流都分别继承一下四种抽象流中的一种: 类型 字节流 字符流 输入流 InputStream Reader 输出流 OutputStre ...

随机推荐

  1. [shell进阶]——shell多线程

    关于shell的多线程 1. 多线程并发执行任务,而不用一台台的串行执行,能更快更高效 2. Shell并没有多线程的概念,所以: * 一般使用wait.read等命令技巧性地模拟多线程实 * 使用命 ...

  2. qq iOS环境配置及调用

    1.下载官方iOS sdk:地址:相关文档 2. 将iOS SDK中的TencentOpenAPI.framework和TencentOpenApi_IOS_Bundle.bundle文件拷贝到应用开 ...

  3. 设置placeholder的字体颜色

    //设置字体颜色 [self.searchTextField setValue:[UIColor colorWithRed:0.50 green:0.50 blue:0.50 alpha:1.0] f ...

  4. 十四、curator recipes之DistributedAtomicLong

    简介 和Java的AtomicLong没有太大的不同DistributedAtomicLong旨在分布式场景中维护一个Long类型的数据,你可以像普通单机环境一样来使用它. 官方文档:http://c ...

  5. Z_Tree的使用案例(出差地点的演示)

    1.准备工作(下载zTree并添加到项目JS中) 2.HTML代码 <link rel="stylesheet" href="./js/zTree_v3-3.5.2 ...

  6. 撩课-Python-每天5道面试题-第3天

    一. 代码实现: 计算1到100之间, 所有的奇数之和 result = , ): result += i print(result) 二. 代码实现: 接收用户输入数字, 求出从0至这个数字的累加和 ...

  7. ChannelSftp.chmod方法赋权文件夹

    最近对接分账工作需要上传分账文件到指定sftp服务器,在给sftp上文件夹赋权是遇到一个问题: 具体是ChannelSftp的chmod(int permissions, String path)方法 ...

  8. SQL Server 中位数、标准差、平均数

    create table examines ( ,) NOT NULL, ) NULL, [ph_score] [int] NULL ) SELECT dept_name, AVG(sp) as '中 ...

  9. csharp: Gets a files formatted size.

    /* ASP.NET 默认上传文件是4M ,可以修改服务配置.. <system.web> <!-- 指示 ASP.NET 支持的最大文件上载大小. 该限制可用于防止因用户将大量文件 ...

  10. BZOJ1093 [SCOI2003]字符串折叠

    Description 折叠的定义如下: 1. 一个字符串可以看成它自身的折叠.记作S  S 2. X(S)是X(X>1)个S连接在一起的串的折叠.记作X(S)  SSSS…S(X个S). ...