简要咨询咨询QQ网站导航网站搜索手机站点联系我们设为首页加入收藏 

ios读取文件类和常用方法

来源:易贤网   阅读:902 次  日期:2015-03-05 11:11:43

温馨提示:易贤网小编为您整理了“ios读取文件类和常用方法”,方便广大网友查阅!

第一、nsfilehandle

nsfilemanager类主要对文件的操作(删除、修改、移动、复制等)

nsfilehandle类主要对文件的内容进行读取和写入

第二、nsfilehandle类处理文件的步骤

创建一个nsfilehandle对象

对打开的文件进行i/0操作

关闭文件

可以使用nsfilehandle进行断点续传

第三、实现查找功能的代码:

nsstring *homepath=nshomedirectory();

nsstring *filepath=[homepath stringbyappendingpathcomponent:@desktop/hello.rtf];

nsfilehandle *filehandle=[nsfilehandle filehandleforreadingatpath:filepath];

nsuinteger length=[filehandle availabledata].length;

[filehandle seektofileoffset:length/2];

nsdata *data=[filehandle readdatatoendoffile];

nsstring *str=[[nsstring alloc] initwithdata:data encoding:nsutf8stringencoding];

nslog(@);

第四、实现追加文件代码:

nsstring *homepath=nshomedirectory();

nsstring *filepath=[homepath stringbyappendingpathcomponent:@desktop/hello.rtf];

nsfilehandle *filehandle=[nsfilehandle filehandleforupdatingatpath:filepath];

//[filehandle seektoendoffile];

[filehandle seektofileoffset:10];

nsstring ;

nsdata *data=[str datausingencoding:nsutf8stringencoding];

[filehandle writedata:data];

[filehandle closefile];

// insert code here...

nslog(@hello, world!);

第五、实现复制文件的代码:

nsstring *homepath=nshomedirectory();

nsstring *filepath=[homepath stringbyappendingpathcomponent:@desktop/hello.rtf];

nsstring *objpath=[homepath stringbyappendingpathcomponent:@desktop/copy.rtf];

nsfilemanager *filemanager=[nsfilemanager defaultmanager];

bool success=[filemanager createfileatpath:objpath contents:nil attributes:nil];

nsfilehandle *writefile=[nsfilehandle filehandleforreadingatpath:filepath];

nsfilehandle *objfile=[nsfilehandle filehandleforwritingatpath:objpath];

[objfile readdatatoendoffile];

nsdata *data=[writefile readdatatoendoffile];

[objfile writedata:data];

[writefile closefile];

[objfile closefile];

更多信息请查看IT技术专栏

更多信息请查看技术文章
点此处就本文及相关问题在本站进行非正式的简要咨询(便捷快速)】     【点此处查询各地各类考试咨询QQ号码及交流群
上一篇:u盘重装系统电脑bios设置里没有u盘启动项问题
下一篇:设置电脑倒计时关机的命令
易贤网手机网站地址:ios读取文件类和常用方法
由于各方面情况的不断调整与变化,易贤网提供的所有考试信息和咨询回复仅供参考,敬请考生以权威部门公布的正式信息和咨询为准!