파일 데이터 저장소 보기
1626 단어 데이터 저장소
-(void)loadFile{
NSString *filePath=@"/Users/qing/Library/haha.txt";
if([[NSFileManager defaultManager] fileExistsAtPath:filePath]){
NSData *data=[[NSMutableData alloc]initWithContentsOfFile:filePath];
NSString * str=[[NSString alloc]initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@"content=%@",str);
}else{
NSLog(@"NO");
}
}
2.파일 아카이빙
NSKeyedArchiver *archiver = [[NSKeyedArchiver alloc] initForWritingWithMutableData:data];
[archiver encodeObject:fourLines forKey:kDataKey];
[archiver finishEncoding];
[data writeToFile:[self dataFilePath] atomically:YES];
3. XML 파일 가져오기
NSString *filePath = [[NSBundle mainBundle] pathForResouse:@"re" ofType:@"xml"];
NSData *data = [[NSData alloc] initWithContentsOfFile:filePath];
속성 목록 가져오기
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"ViewControllers" ofType:@"plist"]];
4. 사용자 기본 설정 NSuserDefaults
NSUserDefaults *Defaults=
[NSUserDefaults standardUserDefaults];
[Defaults setObject:@"helloc ddddyou22" forKey:@"hello"];
// , clean
NSLog(@"%@",[Defaults objectForKey:@"hello"]);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
MotionBoard로 데이터 차이를 비교해보세요.MotionBoard는 다양한 데이터 원본에서 데이터를 수집하고 한 화면에 데이터를 집적합니다. 이번에는 데이터 차별 비교를 소개합니다. 데이터의 차분 비교 이 숫자 도표는 지난주와 비교를 나타낸다. 이러한 차분 비...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.