数据读写——NSFileHandle

概述


NSFileHandle类是一种面向对象的封装对一个文件的描述。您可以使用文件句柄对象来访问文件,套接字,管道和设备相关的数据。对于文件,您可以在文件中读,写。对于套接字,管道和设备,你可以使用一个文件句柄对象来监视设备和过程数据的异步。
(The NSFileHandle class is an object-oriented wrapper for a file descriptor. You use file handle objects to access data associated with files, sockets, pipes, and devices. For files, you can read, write, and seek within the file. For sockets, pipes, and devices, you can use a file handle object to monitor the device and process data asynchronously.)

常用方法

类方法


fileHandleForUpdatingAtPath:
更新文件
fileHandleForReadingAtPath:
读文件
fileHandleForWritingAtPath:
写文件

以及相应的操作URL的方法

实例方法


writeData:
写数据
readDataToEndOfFile
读到文件末尾
readDataOfLength:
读取指定长度的数据
seekToEndOfFile
移到文件末尾
closeFile
关闭文件
availableData
返回当前可用的数据


我们注意到由于NSFileHandle类并没有提供文件的文件的创建删除等相关操作,所以这些对文件的操作还需要借助NSFileManager来执行。

一个简单的Demo

这个示例在文本视图中显示存入的数据信息,预览视图如下:


接口部分

@property (weak, nonatomic) IBOutlet UITextField *nameField;
@property (weak, nonatomic) IBOutlet UITextField *ageField;
@property (weak, nonatomic) IBOutlet UITextField *emailField;
@property (weak, nonatomic) IBOutlet UITextView *informationView;

- (IBAction)saveInformation:(id)sender;
- (IBAction)loadInformation:(id)sender;
- (IBAction)tappedEndEditing:(id)sender;
- (IBAction)tapped:(id)sender;

实现存储数据

- (IBAction)saveInformation:(id)sender {
    NSString *inputString = [NSString stringWithFormat:@"%@ - %@ - %@\n",
                            self.nameField.text, self.ageField.text, self.emailField.text];
    
    NSString *docDir = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
    
    NSString *filePath = [docDir stringByAppendingPathComponent:@"myInfoList.csv"];
    
    NSFileManager *fileManager = [NSFileManager defaultManager];
    if (![fileManager fileExistsAtPath:filePath]) {
        [fileManager createFileAtPath:filePath contents:nil attributes:nil];
        NSLog(@"文件创建成功");
    }
    
    NSFileHandle *fileHandle = [NSFileHandle fileHandleForUpdatingAtPath:filePath];
    [fileHandle seekToEndOfFile];
    [fileHandle writeData:[inputString dataUsingEncoding:NSUTF8StringEncoding]];
    [fileHandle closeFile];
    
    self.nameField.text = @"";
    self.ageField.text = @"";
    self.emailField.text = @"";
}

实现读取数据

- (IBAction)loadInformation:(id)sender {
    NSString *docDir, *filePath;
    NSFileManager *fileManager;
    
    docDir = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
    filePath = [docDir stringByAppendingPathComponent:@"myInfoList.csv"];
    fileManager = [NSFileManager defaultManager];
    
    if ([fileManager fileExistsAtPath:filePath]) {
        NSLog(@"存在该文件");
        NSFileHandle *fileHandle;
        fileHandle = [NSFileHandle fileHandleForReadingAtPath:filePath];
        
        NSString *outputString = [[NSString alloc] initWithData:[fileHandle availableData] encoding:NSUTF8StringEncoding];
        [fileHandle closeFile];
        
        self.informationView.text = outputString;
    }
}

实现其他方法

- (IBAction)tappedEndEditing:(id)sender {
    [self.view endEditing:YES];
}

- (IBAction)tapped:(id)sender {
    self.informationView.text = @"";
}

一个隐藏键盘,一个手势操作。


这两天在GitHub上看了一个蛮全的讲动画的示例https://github.com/applidium/ADTransitionController,有机会写一下。
  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值