简单掌握iOS应用开发中sandbox沙盒的使用
一、ios沙盒机制
ios的应用只能访问为该应用创建的区域,不可访问其他区域,应用的其他非代码文件都存在此目录下,包括图片,属性文件plist,bundle,nib文件等,这块区域称之为沙盒(sandbox)。
每个应用都有属于自己的存储空间,即沙盒。
应用只能访问自己的沙盒,不可访问其他区域。
如果应用需要进行文件操作,则必须将文件存放在沙盒中,尤其是数据库文件,在电脑上操作时,可以去访问,但是如果要装在真机上可以使用,必须将数据库文件拷贝至沙盒中。
二、打开沙盒路径
1、如果不知道沙盒路径,可以在自己的应用中打印其路径。
nslog(@"沙盒路径:%@",nshomedirectory());
会得到打印结果*为字母或数字,即为沙盒的路径
/users/apple/library/application support/iphone simulator/6.1/applications/******-****-****-****-************
打开finder,选择前往-前往文件夹(或选择快捷键command+shift+g)输入打印出来的路径即可
2、打开finder,选择前往并按住option键,进入资源库
选择application support-iphone simulator-选择模拟器版本,即可看到各个应用的沙盒目录。
选中其中一个目录,即可看到程序的名称的app文件。
三、目录结构
沙盒默认情况下有三个目录文件夹documents,library,tmp及应用的app文件,只可在相应的文件夹中进行操作
documents:一般用来存放应用中建立的文件,如数据库文件,或程序中浏览到的文件数据。如果进行备份会将此文件夹中的文件包括其中;
library:存储应用的默认设置及状态信息;
library/cache:用来存放缓存文件,此文件夹下数据在应用退出时不会删除。备份时不会包括此文件夹;
tmp:存放即时穿件的临时文件
带图标的app文件:
选中后显示包内容,即可看到存储的图标,nib文件,属性列表等
四、在沙盒中写文件
在沙盒目录的documents文件夹下添加一个plist文件,添加图片等方法相同
// 获取documents文件夹目录
nsstring *rootpath = [nssearchpathfordirectoriesindomains(nsdocumentdirectory, nsuserdomainmask, yes) objectatindex:0];
// 设定plist的路径
[rootpath stringbyappendingpathcomponent:@"new.plist"];
// 然后在plist中写入内容
nsstring *error;
// 序列化一个值“ok”
id plist = [nspropertylistserialization datafrompropertylist:@"ok" format:nspropertylistxmlformat_v1_0 errordescription:&error];
if(plist) {
nslog(@"no error creating xml data.");
[plist writetofile:plistpath atomically:yes];
}
else {
nslog(@"%@",error);
[error release];
}
运行后在documents文件夹下将看到一个new.plist文件
文件中有一个值ok,也可添加数组,字典等相关类型的内容,只需将上文中的“ok”换成一个(id)类型的值即可
五、拷贝文件到沙盒目录下
下面拷贝一个public.xml文件至document路径下,也可拷贝其他文件,只需将文件名和类型对应即可,尤其是database文件,一定要拷贝至沙盒才能使用。此文件不能是电脑中的文件,必须加入工程的bundle中
// 获取documents路径
nsstring *documentspath = [nssearchpathfordirectoriesindomains(nsdocumentdirectory,nsuserdomainmask,yes) lastobject];
// 设定要拷贝文件的路径及名称
nsstring *xmlsandboxpath = [documentspath stringbyappendingpathcomponent:@"public.xml"];
nsfilemanager *filemanager = [nsfilemanager defaultmanager];
// 判断文件是否已经存在
bool isexisting = [filemanager fileexistsatpath:xmlsandboxpath];
if (!isexisting) {
// 本地无此文件,则将此文件拷贝到本地目录。
nsstring *xmlfilepath = [[nsbundle mainbundle] pathforresource:@"public" oftype:@"xml"];
nserror *err;
// 将bundle中的文件拷贝至沙盒目录下
[filemanager copyitematpath:xmlfilepath topath:xmlsandboxpath error:&err];
}
操作之后,documents路径下就有这个文件了
上一篇: 桑葚的好处你知道多少呢