2

我想读取放置在服务器上的文本文件。例如我的文件放在这个链接上: http: //mysite.com/files/objects.txt 我怎样才能读入这个文件的内容NSString

4

2 回答 2

7

试试这个:

NSError* e;
NSString* str = [NSString stringWithContentsOfURL:@"http://mysite.com/files/objects.txt" encoding:NSASCIIEncoding error:&e]
if(e != nil) {
  //There was an error
}
//Everything good
于 2012-08-29T05:36:59.327 回答
1

请注意,随着最近的 iOS 更新,语法已经改变......

NSError* err;
NSURL* url = [NSURL URLWithString:@"<your URL goes here>"];
NSString* str = [NSString stringWithContentsOfURL:url
                                             encoding:NSASCIIStringEncoding
                                                error:&err];
于 2014-03-12T03:00:13.067 回答