NSURL类

作者:追风剑情 发布于:2019-3-6 11:25 分类:Objective-C

通过URL读取数据

示例

  1. #import <Foundation/Foundation.h>
  2.  
  3. int main(int argc, const char * argv[]) {
  4. @autoreleasepool {
  5. NSURL *myURL = [NSURL URLWithString: @"http://www.baidu.com"];
  6. // 读取百度首页的html内容
  7. NSString *myHomePage = [NSString stringWithContentsOfURL:
  8. myURL encoding: NSASCIIStringEncoding error: NULL];
  9. NSLog(@"%@", myHomePage);
  10. // 从URL读取字典
  11. //myURL = [NSDictionary dictionaryWithContentsOfURL: myURL];
  12. // 从URL读取数组
  13. //myURL = [NSArray arrayWithContentsOfURL: myURL];
  14. // 从URL读取任意数据
  15. //myURL = [NSData dataWithContentsOfURL: myURL options: NSDataReadingUncached error: NULL];
  16. }
  17. return 0;
  18. }

运行测试
111.png

标签: Objective-C

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号