我正在尝试使用Office 365 SDK for iOS读取文件 使用他们的示例演示我能够获取文件列表。
现在我被困在我想要阅读文件内容的地方,下面给出了正在使用的代码
MSSharePointFile* fileToRead = [self.Files objectAtIndex:indexPath.row];
[BaseController getClient:^(MSSharePointClient * client) {
MSSharePointItemFetcher *fetcher = [[client getfiles] getById:fileToRead.id];
MSSharePointFileFetcher *fileFetcher = [fetcher asFile];
[[fileFetcher read:^(MSSharePointFile *file, MSODataException *error) {
NSLog(@"%@",file.contentUrl);
// download item from content URL
//Am stuck at this point
}] resume];
我能够获取所选文件的contentURL,但我仍然坚持在提取文件文本旁边需要做的事情。我遍历了文档,但失败了。
请帮我解决这个问题。
由于
答案 0 :(得分:2)
这非常简单 - 这里有一些代码可以让你得到你想要的东西。请注意,您必须更换" myId"使用您想要获取数据的文件的ID。下面的代码片段将以UTF8编码数据并将其打印为字符串。
[BaseController getClient:^(MSSharePointClient *client) {
[[[[[client getfiles] getById:myId] asFile] getContentWithCallback:^(NSData *content, MSODataException *error) {
if (error == nil) {
NSString *fileContent = [[NSString alloc] initWithData:content encoding:NSUTF8StringEncoding];
NSLog(@"Data in file is %@", fileContent);
}
}] resume];
}];