问题描述
- 从URL读取text文件返回字符串
-
从我本地服务器中读取的text文件,其中有字符串。NSString *vers= [NSString stringWithContentsOfURL:[NSURL URLWithString:lnk] encoding:NSUTF8StringEncoding error:nil];
返回的字符串有误,服务器中的数字是1371135679,应用中读取的就是1371133137。
不知道为什么会这样?谢谢。
解决方案
最简单的方法是用HTTP缓存,添加?t=<timestamp>
到request中。
解决方案二:
[[NSURLCache sharedURLCache] removeAllCachedResponses];
时间: 2024-09-22 04:15:50