iOS开发——数据持久化OC篇&plist文件增删改查操作
Plist文件增删查改
主要操作:
1.//获得plist路径 -(NSString*)getPlistPath;
2.//判断沙盒中名为plistname的文件是否存在 -(BOOL) isPlistFileExists;
3.//读取沙盒中Document文件夹下的BookList.plist文件
[NSMutableDictionarydictionaryWithContentsOfFile:plistPath];
4.//写入文件 if ([plistDictionary writeToFile:plistPath atomically:YES])
#import "WBBooksManager.h"
@implementation WBBooksManager
static WBBooksManager *g_instance = nil;
+ (WBBooksManager *)sharedInstance
{
@synchronized(self) {
if ( g_instance == nil ) {
g_instance = [[self alloc] init];
}
}
return g_instance;
}
//获得plist路径
-(NSString*)getPlistPath{
//沙盒中的文件路径
NSArray *storeFilePath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *doucumentsDirectiory = [storeFilePath objectAtIndex:];
NSString *plistPath =[doucumentsDirectiory stringByAppendingPathComponent:@"WBBooks.plist"]; //根据需要更改文件名
return plistPath;
}
//判断沙盒中名为plistname的文件是否存在
-(BOOL) isPlistFileExists{
NSString *plistPath =[[WBBooksManager sharedInstance]getPlistPath];
NSFileManager *fileManager = [NSFileManager defaultManager];
if( [fileManager fileExistsAtPath:plistPath]== NO ) {
NSLog(@"not exists");
return NO;
}else{
return YES;
}
}
-(void)initPlist{
NSString *plistPath = [[WBBooksManager sharedInstance] getPlistPath];
//如果plist文件不存在,将工程中已建起的plist文件写入沙盒中
if (! [[WBBooksManager sharedInstance] isPlistFileExists]) {
//从自己建立的plist文件 复制到沙盒中 ,方法一
NSError *error;
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *bundle = [[NSBundle mainBundle] pathForResource:@"WBBooks" ofType:@"plist"];
[fileManager copyItemAtPath:bundle toPath:plistPath error:&error];
//方法二
// NSString *path = [[NSBundle mainBundle] pathForResource:@"WBBooks"ofType:@"plist"];
// NSMutableDictionary *activityDics = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
// [activityDics writeToFile:plistPath atomically:YES];
}
}
//判断key的书是否存在
-(BOOL)isBookExistsForKey:(NSString*)key{
NSString *plistPath = [[WBBooksManager sharedInstance] getPlistPath];
NSMutableDictionary *WBBooksDictionary = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
//根目录下存在名为bookname的字典
if ([WBBooksDictionary objectForKey:key]) {
return YES;
}else{
return NO;
}
}
//根据key值删除对应书籍
-(void)removeBookWithKey:(NSString *)key{
NSString *plistPath = [[WBBooksManager sharedInstance] getPlistPath];
NSMutableDictionary *WBBooksDictionary = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
[WBBooksDictionary removeObjectForKey:key];
[WBBooksDictionary writeToFile:plistPath atomically:YES]; //删除后重新写入
}
//删除plistPath路径对应的文件
-(void)deletePlist{
NSFileManager *fileManager = [NSFileManager defaultManager];
NSString *plistPath = [[WBBooksManager sharedInstance] getPlistPath];
[fileManager removeItemAtPath:plistPath error:nil];
}
//将dictionary写入plist文件,前提:dictionary已经准备好
-(void)writePlist:(NSMutableDictionary*)dictionary forKey:(NSString *)key{
NSMutableDictionary *plistDictionary = [[NSMutableDictionary alloc]init];
//如果已存在则读取现有数据
if ([[WBBooksManager sharedInstance]isPlistFileExists]) {
plistDictionary = [[WBBooksManager sharedInstance]readPlist];
}
//增加一个数据
[plistDictionary setValue:dictionary forKey:key]; //在plistDictionary增加一个key为...的value
NSString *plistPath = [[WBBooksManager sharedInstance] getPlistPath];
if([plistDictionary writeToFile:plistPath atomically:YES]){
NSLog(@"write ok!");
}else{
NSLog(@"ddd");
}
}
//
-(NSMutableDictionary*)readPlist{
NSString *plistPath = [[WBBooksManager sharedInstance] getPlistPath];
NSMutableDictionary *resultDictionary = [[NSMutableDictionary alloc]initWithContentsOfFile:plistPath];
return resultDictionary;
}
//读取plist文件内容复制给dictionary 备用
-(void)readPlist:(NSMutableDictionary **)dictionary{
NSString *plistPath = [[WBBooksManager sharedInstance] getPlistPath];
*dictionary = [[NSMutableDictionary alloc] initWithContentsOfFile:plistPath];
}
//更改一条数据,就是把dictionary内key重写
-(void)replaceDictionary:(NSMutableDictionary *)newDictionary withDictionaryKey:(NSString *)key{
[[WBBooksManager sharedInstance]removeBookWithKey:key];
[[WBBooksManager sharedInstance]writePlist:newDictionary forKey:key];
}
-(NSInteger)getBooksCount{
NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
dictionary = [[WBBooksManager sharedInstance] readPlist];
return [dictionary count];
}
//导入头文件
#import "WBBooksManager.h"
-(void)viewDidLoad中添加以下代码,是刚写的时候测试时用的,狠时繁杂。 将就着看好了、
WBBooksManager *sss = [[WBBooksManager alloc] init ];
NSString *plistPath =[[WBBooksManager sharedInstance] getPlistPath];
if( [sss isPlistFileExists]== NO ) {//不存在
NSLog(@"WBBooks.plist not exists ,build it.");
NSMutableDictionary *addDictionary1 = [[NSMutableDictionary alloc] init];
NSString *addName1 = [NSString stringWithFormat:@"www"];
NSNumber *addNumber1 = [[NSNumber alloc] initWithInt:];
[addDictionary1 setValue:addName1 forKey:@"name"];
[addDictionary1 setValue:addNumber1 forKey:@"list"];
[[WBBooksManager sharedInstance]writePlist:addDictionary1 forKey:@"Add1"];
NSMutableDictionary *addDictionary2 = [[NSMutableDictionary alloc] init];
NSString *addName2 = [NSString stringWithFormat:@"aaas"];
NSNumber *addNumber2 = [[NSNumber alloc] initWithInt:];
[addDictionary2 setValue:addName2 forKey:@"name"];
[addDictionary2 setValue:addNumber2 forKey:@"list"];
[[WBBooksManager sharedInstance]writePlist:addDictionary2 forKey:@"Add2"];
}
NSMutableDictionary *resultDictionary = [[NSMutableDictionary alloc] init];
[[WBBooksManager sharedInstance] readPlist:&resultDictionary];
NSLog(@"add1的结果%@", resultDictionary);
NSArray *array = [resultDictionary allKeys]; //所有的Book
int num = [[WBBooksManager sharedInstance] getBooksCount]; //总数
NSLog(@"array%@ %d",array,num);
NSMutableDictionary *plistDictionary = [[NSMutableDictionary alloc]init];
plistDictionary = [[WBBooksManager sharedInstance]readPlist];
NSMutableDictionary *addDictionary2 = [[NSMutableDictionary alloc] init];
NSString *addName2 = [NSString stringWithFormat:@"dafd"];
NSNumber *addNumber2 = [[NSNumber alloc] initWithInt:];
[addDictionary2 setValue:addName2 forKey:@"name"];
[addDictionary2 setValue:addNumber2 forKey:@"list"];
[plistDictionary setValue:addDictionary2 forKey:@"Add2"];
[plistDictionary writeToFile:plistPath atomically:YES];
resultDictionary = [[NSMutableDictionary alloc] init];
[[WBBooksManager sharedInstance] readPlist:&resultDictionary];
NSLog(@"add1的结果%@", resultDictionary);
array = [resultDictionary allKeys]; //所有的Book
num = [[WBBooksManager sharedInstance] getBooksCount]; //总数
NSLog(@"array%@ %d",array,num);
NSMutableDictionary *addDictionary1 = [[NSMutableDictionary alloc] init];
NSString *addName1 = [NSString stringWithFormat:@"wmmm"];
NSNumber *addNumber1 = [[NSNumber alloc] initWithInt:];
[addDictionary1 setValue:addName1 forKey:@"name"];
[addDictionary1 setValue:addNumber1 forKey:@"list"];
//判断给出的Key对应的数据是否存在
if ([[WBBooksManager sharedInstance] isBookExistsForKey:@"Add1"]) {
//存在,则替换之
NSLog(@"存在,则替换之");
[[WBBooksManager sharedInstance] replaceDictionary:addDictionary1 withDictionaryKey:@"Add1"];
}else{//不存在,则写入
NSLog(@"不存在,则写入");
[[WBBooksManager sharedInstance] writePlist:addDictionary1 forKey:@"Add1"];
}
resultDictionary = [[NSMutableDictionary alloc] init];
[[WBBooksManager sharedInstance] readPlist:&resultDictionary];
NSLog(@"add1的结果%@", resultDictionary);
array = [resultDictionary allKeys]; //所有的Book
num = [[WBBooksManager sharedInstance] getBooksCount]; //总数
NSLog(@"array%@ %d",array,num);
addName1 = [NSString stringWithFormat:@"wmmm"];
addNumber1 = [[NSNumber alloc] initWithInt:];
[addDictionary1 setValue:addName1 forKey:@"name"];
[addDictionary1 setValue:addNumber1 forKey:@"list"];
//更改key对应的数据
if ([[WBBooksManager sharedInstance] isBookExistsForKey:@"Add1"]) {
[[WBBooksManager sharedInstance] replaceDictionary:addDictionary1 withDictionaryKey:@"Add1"];
}
resultDictionary = [[WBBooksManager sharedInstance]readPlist];
NSLog(@"add1111的结果%@", resultDictionary);
//删除给出key对应的数据
if ([[WBBooksManager sharedInstance] isBookExistsForKey:@"Add1"]) {
[[WBBooksManager sharedInstance] removeBookWithKey:@"Add1"];
}
resultDictionary = [[WBBooksManager sharedInstance]readPlist];
NSLog(@"add1111的结果%@", resultDictionary);
//删除整个plist文件
// if ([[WBBooksManager sharedInstance]isPlistFileExists]) {
// [[WBBooksManager sharedInstance] deletePlist];
// }
resultDictionary = [[WBBooksManager sharedInstance]readPlist];
NSLog(@"add1111的结果%@", resultDictionary);
iOS开发——数据持久化OC篇&plist文件增删改查操作的更多相关文章
- iOS开发——数据持久化Swift篇&通用文件存储
通用文件存储 import UIKit class ViewController: UIViewController { @IBOutlet weak var textField: UITextFie ...
- IOS开发中使用CNContact\CNMutableContact 对通讯录增删改查
IOS开发中使用CNContact\CNMutableContact 对通讯录增删改查 首先当然是把CNcontact包含在工程中: @import Contacts; 1.下面是增加联系人的程序段: ...
- iOS开发-plist文件增删改查
plist第一次看到这个后缀名文件的时候感觉怪怪的,不过接触久了也就习以为常了,plist是Property List的简称可以理解成属性列表文件,主要用来存储串行化后的对象的文件.扩展名为.plis ...
- iOS开发——数据持久化Swift篇&使用Core Data进行数据持久化存储
使用Core Data进行数据持久化存储 一,Core Data介绍 1,Core Data是iOS5之后才出现的一个数据持久化存储框架,它提供了对象-关系映射(ORM)的功能,即能够将对象转化成 ...
- iOS开发——数据持久化Swift篇&SettingBundle
SettingBundle import UIKit class ViewController: UIViewController { var userDefault = NSUserDefaults ...
- iOS开发数据持久化技术02——plist介绍
有疑问的请加qq交流群:390438081 我的QQ:604886384(注明来意) 微信:niuting823 1. 简单介绍:属性列表是一种xml格式的文件.扩展名.plist: 2. 特性:pl ...
- iOS开发——数据持久化Swift篇&(二)沙盒文件
沙盒文件 //******************** 5.2 文件操作 func use_FileOperations() { //1.获取程序的Home目录 let homeDirectory = ...
- iOS开发——数据持久化Swift篇&文件目录路径获取(Home目录,文档目录,缓存目录等)
文件目录路径获取(Home目录,文档目录,缓存目录等) iOS应用程序只能在自己的目录下进行文件的操作,不可以访问其他的存储空间,此区域被称为沙盒.下面介绍常用的程序文件夹目录: 1,Home ...
- iOS开发——数据持久化Swift篇&iCloud云存储
iCloud云存储 import UIKit class ViewController: UIViewController { override func viewDidLoad() { super. ...
随机推荐
- 动软Model 模板 生成可空类型字段
动软代码 生成可空类型 <#@ template language="c#" HostSpecific="True" #> <#@ outpu ...
- 在logopond中看到的优秀设计随想
本随笔仅仅只是自己对于设计作品的想法,不喜勿喷~ 昨日看到关于大神配色的文章,决定在logopond网站中看看优秀的作品,以为自己的配色找找灵感,学习学习,对自己有很强的震撼力的有: 以女性高跟性的抽 ...
- Java Web高性能开发(二)
今日要闻: 性价比是个骗局: 对某个产品学上三五天个把月,然后就要花最少的钱买最多最好的东西占最大的便宜. 感谢万能的互联网,他顺利得手,顺便享受了智商上的无上满足以及居高临下的优越感--你们一千块买 ...
- 分享一个自己用的Objective-C的Http接连类
很久没有更新博客了,所以分享一个. @protocol HttpListenerDelegate; @interface BaseHttp : NSObject { } @property (nona ...
- xargs 简单功能
之所以能用到这个命令,关键是由于很多命令不支持|管道来传递参数,而日常工作中有有这个必要,所以就有了xargs命令,例如: find /sbin -perm +700 |ls -l 这个命 ...
- intel xdk 打ios的ipa包
1.打包 2.点击edit.下载csr文件,然后上传到苹果开发者网址,生成cer文件 上面两步搞完,把最后的按钮设置成"yes" 3.上传配置文件
- VoHelper
VoHelper package com.isoftstone.pcis.policy.core.helper; import com.isoftstone.fwk.dao.CommonDao; im ...
- MSSQL手札三 MSSQL存储过程
--存储过程完成一段sql代码的封装 create proc trim --参数列表,多个间用逗号分隔 ) as --自定义代码段 ) set @str1=LTRIM(RTRIM(@str)) pri ...
- Umbraco部署到IIS中权限问题(back office没有权限新建template)
在开发项目中,发现把基于Umbraco平台开发的网站部署到服务器的IIS之后,访问该网站的back office 在back office中增加一个template时,发送错误,提示 Access t ...
- 【转】删除已经存在的 TFS Workspace
删除已经存在的 TFS Workspace 分类: TFS2010-03-03 16:59 1239人阅读 评论(2) 收藏 举报 serverpathcommandcachefilegoogle 工 ...