1
我想做一個簡單的網址調用。我無法將字節轉換爲NSString。以下是我的代碼。我在我的控制檯消息中得到這個;從網址收到的數據:†F»∞如何將從URL調用接收的數據轉換爲NSString?
-(void)buttonClicked{
NSLog(@"Hello Login clicked...");
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
request = [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:@"http://www.apple.com/contact/"]];
[request setHTTPMethod:@"GET"];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request setTimeoutInterval:60.0];
NSError *error;
NSURLResponse *response;
NSData *urlData=[NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSString *data=[[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding];
NSLog(@"data received from url: %s", data);
}
非常感謝,你救了我的一天。 – dipu 2010-05-24 17:26:56
現在,接受他的回答。 ;) – Wevah 2010-05-24 17:32:29