IOS UI 학습 튜 토리 얼 의 구분 NSBundle 과 NSURL(파일 읽 기,쓰기)

1836 단어 IOSUINSBundleNSURL
본 논문 의 사례 는 NSBundle 과 NSURL 을 구분 하고 구체 적 인 실현 내용 은 다음 과 같다.
프로젝트 프로젝트 에 파일 을 추가 합 니 다.이 규칙 은 aa.txt 를 추가 합 니 다.파일 의 내용 은 바 이 두 입 니 다.www.baidu.com 입 니 다.지금 은 NSBundle 과 NSURL 을 사용 하여 각각 내용 을 가 져 오 려 고 합 니 다.코드 는 다음 과 같 습 니 다.

//        
//    1:        
  NSString *pathBundle = [[NSBundle mainBundle]pathForResource:@"aa" ofType:@"txt"];
  NSString *outstringbundle = [NSString stringWithContentsOfFile:pathBundle encoding:NSUTF8StringEncoding error:nil];
  
//    2:  URL  
  NSURL *pathUrl = [[NSBundle mainBundle]URLForResource:@"aa" withExtension:@"txt" subdirectory:nil];
  NSString *outstringUrl = [NSString stringWithContentsOfURL:pathUrl encoding:NSUTF8StringEncoding error:nil];
  
  NSLog(@"%@
////////
%@",outstringbundle,outstringUrl);
출력 결 과 는 다음 과 같 습 니 다.

2016-03-30 14:48:02.939     and    [11786:518929]   : www.baidu.com
 ////////
   : www.baidu.com
파일 쓰기:
파일 새로 만 들 기:

NSString *newPath = [NSString stringWithFormat:@"%@/Documents/New",NSHomeDirectory()];
 //               
   NSString *newfile = [NSString stringWithFormat:@"%@/new.mp3",newPath];
 //    createFileAtPath    
   [[NSFileManager defaultManager]createFileAtPath:newfile contents:nil attributes:nil];
   NSLog(@"%@",newPath);
읽 고 쓰기:

//      
//  1、  data    
  NSData *data = [[NSData alloc]initWithContentsOfFile:pathBundle];
  NSLog(@"%@",data);
  
//  2、    data      ,newfile            mp3  
  [data writeToFile:newfile atomically:YES];
간단 한 인 스 턴 스 를 통 해 NSBundle 과 NSURL 을 구분 하 는 것 이 여러분 의 학습 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기