我对iOS应用程序开发很新。
我正在尝试构建一个示例数据库应用程序,它将记录保存到数据库并从中提取。
当我使用模拟器进行测试时,该应用程序运行良好。我已经创建了一个本地数据库,并且我还在编程时根据需要复制它。我还检查了“复制包资源”中是否引用了本地数据库。
但我得到的错误是,“ *因未捕获的异常而终止应用程序'NSInvalidArgumentException',原因:'* - [NSFileManager copyItemAtPath:toPath:错误:]:源路径为nil' ”
我认为造成这个问题的代码是 “[FileManager copyItemAtPath:databasePathFromApp toPath:DBPath error:nil];”
它对模拟器非常有用,但在用我的设备进行测试时却没有。
期待帮助。
我的代码是,
- (id)init {
self = [super init];
//Datbase Name
DBName=@"Person.sqlite3";
//Getting DB Path
NSArray *documentsPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentsPath objectAtIndex:0];
DBPath=[documentsDir stringByAppendingPathComponent:DBName ];
//DBPath = [[NSString alloc] initWithString: [documentsDir stringByAppendingPathComponent:DBName]];
NSLog(@"DBPath is %@",DBPath);
return self;
}
-(void)checkAndCreateDB{
BOOL Success;
//NSFileManager maintains File
NSFileManager *FileManager = [NSFileManager defaultManager];
NSLog(@"line 1");
//Checks Database Path
Success = [FileManager fileExistsAtPath:DBPath];
NSLog(@"line 2");
//If file exists, it returns true
if(Success)return;
NSLog(@"line 3");
//NSString *databasePathFromApp = [[[NSBundle mainBundle]resourcePath]stringByAppendingPathComponent:DBName];
// Get the path to the database in the application package
NSString *databasePathFromApp=[[NSBundle mainBundle] pathForResource:@"Person.sqlite3" ofType:@"sqlite3"];
NSLog(@"line 4");
[FileManager copyItemAtPath:databasePathFromApp toPath:DBPath error:nil];
//[FileManager release];
NSLog(@"line 5");
}
我的应用程序在NSLOG行之后在设备中进行测试时崩溃(第4行);但在模拟器中效果很好。
非常感谢 普拉卡什
答案 0 :(得分:0)
设备无法写入应用程序包,您需要使用Documents目录。
以下是获取Documents目录路径的方法:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:fileName];
如果您在应用程序包中有一个初始数据库,请在初次启动时将其复制到Documents。
答案 1 :(得分:0)
更改此行
NSString *databasePathFromApp=[[NSBundle mainBundle] pathForResource:@"Person.sqlite3" ofType:@"sqlite3"];
到
NSString *databasePathFromApp=[[NSBundle mainBundle] pathForResource:@"Person" ofType:@"sqlite3"];
另外,注意大写,iOS设备区分大小写,而在模拟器上,你会错误地获取大写字母