我想獲取由我託管的網址的內容。網址的內容是獲取網址內容的編碼IOS
<p class="citation_style_APA">Blaine, J. D. (1992). <i>Buprenorphine: An alternative treatment for opioid dependence</i>. Rockville, MD: U.S. Dept. of Health and Human Services, Public Health Service, Alcohol, Drug Abuse, and Mental Health Administration, National Institute on Drug Abuse. </p>
下面是我的代碼來獲取上述內容的字符串。
NSString *s =[NSString stringWithFormat:@"%@",@"xyz.com"];
url = [NSURL URLWithString:s];
NSString *content = [NSString stringWithContentsOfURL:url encoding:NSASCIIStringEncoding error:nil];
NSLog(@"%@",content);
我得到空,誰能告訴我哪裏出錯了。
你需要一個有效的URL,例如通過'http:// xyz.com'。 – rmaddy
並擺脫'stringWithFormat:'。只要做'NSString * s = @「http://whatever.com」;'。 – rmaddy
這是一個有效的網址在我的服務器託管,我只是把假人在這裏! – bharath