国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > 建站經驗 > 正文

IOS讀取文件類和常用,方法

2019-11-02 14:36:26
字體:
來源:轉載
供稿:網友

   第一、NSFileHandle

  NSFileManager類主要對文件的操作(刪除、修改、移動、復制等)

  NSFileHandle類主要對文件的內容進行讀取和寫入

  第二、NSFileHandle類處理文件的步驟

  創建一個NSFileHandle對象

  對打開的文件進行I/0操作

  關閉文件

  可以使用NSFileHandle進行斷點續傳

  第三、實現查找功能的代碼:

  NSString *homePath=NSHomeDirectory();

  NSString *filePath=[homePath stringByAppendingPathComponent:@"Desktop/hello.rtf"];

  NSFileHandle *fileHandle=[NSFileHandle fileHandleForReadingAtPath:filePath];

  NSUInteger length=[fileHandle availableData].length;

  [fileHandle seekToFileOffset:length/2];

  NSData *data=[fileHandle readDataToEndOfFile];

  NSString *str=[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

  NSLog(@"%@",str);

  第四、實現追加文件代碼:

  NSString *homePath=NSHomeDirectory();

  NSString *filePath=[homePath stringByAppendingPathComponent:@"Desktop/hello.rtf"];

  NSFileHandle *fileHandle=[NSFileHandle fileHandleForUpdatingAtPath:filePath];

  //[fileHandle seekToEndOfFile];

  [fileHandle seekToFileOffset:10];

  NSString *[email protected]"data";

  NSData *data=[str dataUsingEncoding:NSUTF8StringEncoding];

  [fileHandle

蝦滾網[www.aikan.tv/special/xiagundianyingwang/]
writeData:data];

  [fileHandle closeFile];

  // insert code here...

  NSLog(@"Hello, World!");

  第五、實現復制文件的代碼:

  NSString *homePath=NSHomeDirectory();

  NSString *filePath=[homePath stringByAppendingPathComponent:@"Desktop/hello.rtf"];

  NSString *objPath=[homePath stringByAppendingPathComponent:@"Desktop/copy.rtf"];

  NSFileManager *fileManager=[NSFileManager defaultManager];

  BOOL success=[fileManager createFileAtPath:objPath contents:nil attributes:nil];

  NSFileHandle *writeFile=[NSFileHandle fileHandleForReadingAtPath:filePath];

  NSFileHandle *objFile=[NSFileHandle fileHandleForWritingAtPath:objPath];

  [objFile readDataToEndOfFile];

  NSData *data=[writeFile readDataToEndOfFile];

  [objFile writeData:data];

  [writeFile closeFile];

  [objFile closeFile];

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 突泉县| 齐齐哈尔市| 博客| 乌拉特后旗| 夹江县| 大竹县| 石棉县| 龙州县| 翼城县| 呼玛县| 莱芜市| 九江县| 博爱县| 桐庐县| 曲阳县| 西吉县| 珠海市| 松溪县| 图木舒克市| 银川市| 西峡县| 沙坪坝区| 永春县| 东方市| 綦江县| 咸丰县| 临桂县| 娄底市| 西华县| 金平| 绵竹市| 宁安市| 策勒县| 延吉市| 蛟河市| 嘉义县| 中西区| 临沧市| 玉门市| 温宿县| 措美县|