【转】iphone 输入/输出流异步读写数据
1、首先是往文件里写入数据
WriteFile.h
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- @class NoteDb;
- @interface WriteFile : NSObject<NSStreamDelegate>{
- //文件地址
- NSString *parentDirectoryPath;
- //输出流,写数据
- NSOutputStream *asyncOutputStream;
- //写数据的内容
- NSData *outputData;
- //位置及长度
- NSRange outputRange;
- //数据的来源
- NoteDb *aNoteDb;
- }
- @property (nonatomic,retain) NSData *outputData;
- @property (nonatomic,retain) NoteDb *aNoteDb;
- //写数据
- -(void)write;
- @end
实现文件WriteFile.m
- #import "WriteFile.h"
- #import "NoteDb.h"
- @implementation WriteFile
- @synthesize outputData,aNoteDb;
- -(id)init{
- self=[super init];
- if (!self) {
- [self release];
- return nil;
- }
- outputData=[[NSData alloc]init];
- aNoteDb=[[NoteDb alloc]init];
- return self;
- }
- -(void)write{
- //NSLog(@"%@",self.aNoteDb);
- //沙盒路径
- NSArray *paths= NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *documentsDirectory = [paths objectAtIndex:0];
- //文件名字是note.txt
- NSString *path = [documentsDirectory stringByAppendingPathComponent:@"note.txt"];
- [asyncOutputStream release];
- parentDirectoryPath = path;
- //数据源
- NSData *tmpdata = [NSKeyedArchiver archivedDataWithRootObject:self.aNoteDb.noteList];
- //self.outputData=[[NSData alloc]initWithData:tmpdata];
- self.outputData=tmpdata;
- //位置从哪开始
- outputRange.location=0;
- //创建文件
- [[NSFileManager defaultManager] createFileAtPath:parentDirectoryPath
- contents:nil attributes:nil];
- //初始化输出流
- asyncOutputStream = [[NSOutputStream alloc] initToFileAtPath: parentDirectoryPath append: NO];
- //回调方法,
- [asyncOutputStream setDelegate: self];
- //异步处理,
- [asyncOutputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
- //打开异步输出流
- [asyncOutputStream open];
- }
- -(void)stream:(NSStream *)theStream handleEvent:(NSStreamEvent)streamEvent{
- // NSLog(@"as");
- NSOutputStream *outputStream = (NSOutputStream*) theStream;
- BOOL shouldClose = NO;
- switch (streamEvent)
- {
- case NSStreamEventHasSpaceAvailable://读事件
- {
- //缓冲区
- uint8_t outputBuf [1];
- //长度
- outputRange.length = 1;
- //把数据放到缓冲区中
- [outputData getBytes:&outputBuf range:outputRange];
- //把缓冲区中的东西放到输出流
- [outputStream write: outputBuf maxLength: 1];
- //判断data数据是否读完
- if (++outputRange.location == [outputData length])
- {
- shouldClose = YES;
- }
- break;
- }
- case NSStreamEventErrorOccurred:
- {
- //出错的时候
- NSError *error = [theStream streamError];
- if (error != NULL)
- {
- UIAlertView *errorAlert = [[UIAlertView alloc]
- initWithTitle: [error localizedDescription]
- message: [error localizedFailureReason]
- delegate:nil
- cancelButtonTitle:@"OK"
- otherButtonTitles:nil];
- [errorAlert show];
- [errorAlert release];
- }
- shouldClose = YES;
- break;
- }
- case NSStreamEventEndEncountered:
- shouldClose = YES;
- }
- if (shouldClose)
- {
- //当出错或者写完数据,把线程移除
- [outputStream removeFromRunLoop: [NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
- //最后关掉输出流
- [theStream close];
- }
- }
- -(void)dealloc{
- [outputData release];
- [aNoteDb release];
- [super dealloc];
- }
- @end
2、其次是从文件里读出数据
ReadFile.h
- #import <Foundation/Foundation.h>
- @class NoteDb;
- @interface ReadFile : NSObject<NSStreamDelegate>{
- //路径
- NSString *parentDirectoryPath;
- //异步输出流
- NSInputStream *asyncInputStream;
- //读出来的数据
- NSMutableData *resultData;
- //返回去的数据
- NoteDb *aNoteDb;
- }
- @property(nonatomic,retain)NoteDb *aNoteDb;
- @property (nonatomic, retain) NSMutableData *resultData;
- //开始读数据
- -(void)read;
- //读出来的数据追加到resultData上
- - (void)appendData:(NSData*)_data;
- //
- - (void)dataAtNoteDB;
- //返回去的数据
- - (NoteDb*)getNoteDb;
- @end
实现文件ReadFile.m
- #import "ReadFile.h"
- #import "NoteDb.h"
- #import "NoteList.h"
- #import "WriteFile.h"
- @implementation ReadFile
- @synthesize aNoteDb,resultData;
- -(id)init{
- self=[super init];
- //aNoteDb=[[NoteDb alloc]init];
- resultData=[[NSMutableData alloc]init];
- return self;
- }
- -(void)read{
- //沙盒路径
- NSArray *paths= NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSString *documentsDirectory = [paths objectAtIndex:0];
- //文件名
- NSString *path = [documentsDirectory stringByAppendingPathComponent:@"note.txt"];
- /*
- if(![[NSFileManager defaultManager]fileExistsAtPath:path]){
- //如果不存在,就新建
- WriteFile *file=[[WriteFile alloc]init];
- [file write];
- [file release];
- }else{
- NSLog(@"有note.txt文件");
- }
- */
- [asyncInputStream release];
- parentDirectoryPath = path;
- //异步输入流初始化,并把赋于地址
- asyncInputStream =
- [[NSInputStream alloc] initWithFileAtPath: parentDirectoryPath];
- //设置代理(回调方法、委托)
- [asyncInputStream setDelegate: self];
- //设置线程,添加线程,创建线程:Runloop顾名思义就是一个不停的循环,不断的去check输入
- [asyncInputStream scheduleInRunLoop:[NSRunLoop currentRunLoop]
- forMode:NSDefaultRunLoopMode];
- //打开线程
- [asyncInputStream open];
- }
- //追加数据
- - (void)appendData:(NSData*)_data{
- [resultData appendData:_data];
- }
- //回调方法,不停的执行
- -(void)stream:(NSStream *)theStream handleEvent:(NSStreamEvent)streamEvent{
- BOOL shouldClose = NO;
- NSInputStream *inputStream = (NSInputStream*) theStream;
- //NSLog(@"as");
- switch (streamEvent)
- {
- case NSStreamEventHasBytesAvailable:
- {
- //读数据
- //读取的字节长度
- NSInteger maxLength = 128;
- //缓冲区
- uint8_t readBuffer [maxLength];
- //从输出流中读取数据,读到缓冲区中
- NSInteger bytesRead = [inputStream read: readBuffer
- maxLength:maxLength];
- //如果长度大于0就追加数据
- if (bytesRead > 0)
- {
- //把缓冲区中的数据读成data数据
- NSData *bufferData = [[NSData alloc]
- initWithBytesNoCopy:readBuffer
- length:bytesRead
- freeWhenDone:NO];
- //追加数据
- [self appendData:bufferData];
- //release掉data
- [bufferData release];
- }
- break;
- }
- case NSStreamEventErrorOccurred:
- {
- //读的时候出错了
- NSError *error = [theStream streamError];
- if (error != NULL)
- {
- UIAlertView *errorAlert = [[UIAlertView alloc]
- initWithTitle: [error localizedDescription]
- message: [error localizedFailureReason]
- delegate:nil
- cancelButtonTitle:@"OK"
- otherButtonTitles:nil];
- [errorAlert show];
- [errorAlert release];
- }
- shouldClose = YES;
- break;
- }
- case NSStreamEventEndEncountered:
- {
- shouldClose = YES;
- //数据读完就返回数据
- [self dataAtNoteDB];
- [theStream close];
- }break;
- }
- if (shouldClose)
- {
- //当文件读完或者是读到出错时,把线程移除
- [inputStream removeFromRunLoop: [NSRunLoop currentRunLoop]
- forMode:NSDefaultRunLoopMode];
- //并关闭流
- [theStream close];
- }
- }
- -(void) dataAtNoteDB{
- aNoteDb=nil;
- aNoteDb=[[NoteDb alloc]init];
- aNoteDb.noteList = [NSKeyedUnarchiver unarchiveObjectWithData:resultData];
- //NSLog(@"%@",aNoteDb);
- /*
- for (id tmp in aNoteDb.noteList.noteArray)
- {
- NSLog(@"tmp = %@",tmp);
- }
- */
- }
- - (NoteDb*)getNoteDb{
- return self.aNoteDb;
- }
- -(void)dealloc{
- [aNoteDb release];
- [resultData release];
- [super dealloc];
- }
- @end
【转】iphone 输入/输出流异步读写数据的更多相关文章
- C++学习笔记10_输入输出流.文件读写
//从键盘输入到程序,叫标准input:从程序输出到显示器,叫标准output:一并叫标准I/O //文件的输入和输出,叫文件I/O cout<<"hellow word&quo ...
- Java基础知识强化之IO流笔记57:数据输入输出流(操作基本数据类型)
1. 数据输入输出流(操作基本数据类型) (1)数据输入流:DataInputStream DataInputStream(InputStream in) (2)数据输出流:DataOutputStr ...
- 序列流、对象操作流、打印流、标准输入输出流、随机访问流、数据输入输出流、Properties(二十二)
1.序列流 * 1.什么是序列流 * 序列流可以把多个字节输入流整合成一个, 从序列流中读取数据时, 将从被整合的第一个流开始读, 读完一个之后继续读第二个, 以此类推.* 2.使用方式 * 整合两个 ...
- 4、BufferedIn(out)putStream--->字节输入/输出流的缓冲区类(高效类:高效率读写)
前言 字节流一次读写一个数组的速度明显比一次读写一个字节的速度快很多,这是加入了数组这样的缓冲区效果,java本身在设计的时候,也考虑到了这样的设计思想(装饰设计模式后面讲解),所以提供了字节缓冲区流 ...
- C++ 输入输出流 文本文件 二进制文件读写
文本文件/ASCII文件(能直接显示内容,费存储空间):文件中每一个字节中均以ASCII代码形式存放数据,即一个字节存放一个字符,这个文件就是ASCII文件或称字符文件. 二进制文件(不能显示内容,节 ...
- DataInputStream 数据类型数据输入输出流
package IOliu; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.FileI ...
- java.IO输入输出流:过滤流:buffer流和data流
java.io使用了适配器模式装饰模式等设计模式来解决字符流的套接和输入输出问题. 字节流只能一次处理一个字节,为了更方便的操作数据,便加入了套接流. 问题引入:缓冲流为什么比普通的文件字节流效率高? ...
- Java中IO流,输入输出流概述与总结
总结的很粗糙,以后时间富裕了好好修改一下. 1:Java语言定义了许多类专门负责各种方式的输入或者输出,这些类都被放在java.io包中.其中, 所有输入流类都是抽象类InputStream(字节输入 ...
- JAVA输入输出流
概述: 各种流类型(类和抽象类)都位于位于java.io包中,各种流都分别继承一下四种抽象流中的一种: 类型 字节流 字符流 输入流 InputStream Reader 输出流 OutputStre ...
随机推荐
- 【LeetCode题解】349_两个数组的交集
目录 [LeetCode题解]349_两个数组的交集 描述 方法一:两个哈希表 Java 实现 类似的 Java 实现 Python 实现 类似的 Python 实现 方法二:双指针 Java 实现 ...
- visual studio清理nuget包缓存
最近在使用nuget包的时候发现一个问题.昨天我组长明明发了一个新版本的包上去,可在我电脑上死活找不到这个新版本的包.刷新,重启vs,重启电脑,好长时间才出来.今天又碰到这个问题了,在同事电脑上都能搜 ...
- DataGridView 隔行显示不同的颜色
两种方法 第一种 DataGridview1.Rows[i].DefultCellStyle.backcolor 第二种 AlternatingRowsDefutCellstyle 属性 获取或设置应 ...
- Cookie写入之path的坑
问题 我在/page/index/index.html中向浏览器添加了一个useid的cookie(这里没有指定path), 然后试着从/page/demo/demo.html中取值,发现无法取到, ...
- ubuntu关机重启命令
重启命令 : 1.reboot 2.shutdown -r now 立刻重启 3.shutdown -r 10 过10分钟自动重启 4.shutdown -r 20:35 ...
- Java CountDownLatch解析(下)
写在前面的话 在上一篇CountDownLatch解析中,我们了解了CountDownLatch的简介.CountDownLatch实用场景.CountDownLatch实现原理中的await()方法 ...
- js-js的运算
** js里面不区分整数和小数 var j = 123; alert(j/1000*1000); //在Java里面结果是0 //在js里面不区分整数和小数 123/1000 = 0.123 *100 ...
- BZOJ1970 [Ahoi2005] 矿藏编码
Description 依次对每份进行编码,得S1,S2,S3,S4.该矿藏区的编码S为2S1S2S3S4. 例如上图中,矿藏区的编码为:2021010210001. 小联希望你能根据给定的编码统计出 ...
- com.alibaba.fastjson.JSONObject循环给同一对象赋值会出现"$ref":"$[0]"现象问题
1.今天定义了一个JSONObject对象,引用的com.alibaba.fastjson.JSONObject,循环给这个对象赋值出现"$ref":"$[0]" ...
- MD5计算器
private void radioBtnFlie_CheckedChanged(object sender, EventArgs e) { RadioButton rb = sender as Ra ...