码迷,mamicode.com
首页 > Web开发 > 详细

缓存html

时间:2015-08-11 18:09:14      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

就是写进文件,然后判断是否存在来发起请求或者加载本地文件
代码片段
NSString * htmlResponseStr=[NSString stringWithContentsOfURL:[NSURL URLWithString:urlStr] encoding:NSUTF8StringEncoding error:Nil];
    NSString *resourcePath = [ [NSBundle mainBundle] resourcePath];
    [_fileManager createDirectoryAtPath:[resourcePath stringByAppendingString:@"/Caches"] withIntermediateDirectories:YES attributes:nil error:nil];
    NSString * path=[resourcePath stringByAppendingString:[NSString stringWithFormat:@"/Caches/%d.html",[urlStr hash]]];
    [htmlResponseStr writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];

 

缓存html

标签:

原文地址:http://www.cnblogs.com/huoxingdeguoguo/p/4721401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!