如何在objective-c中按范围读取大文件?
我想在objective-c中读取一个大文件,并在iphone开发中使用 我使用了以下代码
NSData *data = [[NSData alloc] initWithContentsOfFile:file];
unsigned char *readData[2000];
[data getBytes:readData range:NSMakeRange(1000,3000)]
这可能会导致iPhone应用程序崩溃,因为文件的大小很大。
我尝试使用 NSInputStream,但在任何方法中都找不到范围参数,任何人都可以提供帮助吗?
谢谢&此致 提米
I want to read a large file in objective-c, and used in iphone development
I used the follow code
NSData *data = [[NSData alloc] initWithContentsOfFile:file];
unsigned char *readData[2000];
[data getBytes:readData range:NSMakeRange(1000,3000)]
This maybe get the iphone app crash, because the size of the file is large.
I tried to use NSInputStream, but I can't find the range parameter in any method, can anyone give a help?
Thanks & Best Regards
Timmy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 NSFileHandle:查找数据开始的偏移量并从那里开始读取。
Use
NSFileHandle
: Seek to the offset where your data starts and start reading from there.