Chinaunix首页 | 论坛 | 博客
  • 博客访问: 711407
  • 博文数量: 260
  • 博客积分: 7033
  • 博客等级: 少将
  • 技术积分: 2633
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-13 23:15
文章分类

全部博文(260)

文章存档

2012年(2)

2011年(41)

2010年(78)

2009年(139)

我的朋友

分类:

2009-11-20 06:18:32

// NSCocoaErrorDomain
-(void) test1_domain_error
{
    [self addLog: [NSString stringWithFormat:@"%s %d", __FUNCTION__, __LINE__]];
   
    NSError *error = nil;
    NSString *urlString = @"";
    NSURL *url = [NSURL URLWithString: urlString];
    NSString *webResponse = [NSString stringWithContentsOfURL: url encoding: NSUTF8StringEncoding error: &error];
   
    [self addLog: [NSString stringWithFormat:@"Accessing %@", urlString]];
   
    if(nil != error)
    {
        [self addLog: [NSString stringWithFormat: @"Error code = %d, %@", [error code], [error domain]]];
    }
    else
    {
        [self addLog: [NSString stringWithFormat: @"Access %@ OK, webResponse = %@", urlString, webResponse]];
    }
   
}



阅读(993) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~