我们开发了一个 WebPart 来读取 SiteCollection 中文档库中文件的内容。我使用以下代码来阅读内容。
WebClient wc = new WebClient();
wc.Credentials = CredentialCache.DefaultNetworkCredentials;
string documenturl = siteurl+"/" + file.Url.ToString();
content = wc.DownloadData(documenturl);//documenturl is the file path of the document
但是,我收到以下错误 401 未经授权的异常
System.Net.WebException: The remote server returned an error:(401) Unauthorized. at System.Net.WebClient.DownloadDataInternal(Uri address,WebRequest& request) at System.Net.WebClient.DownloadData(Uri address)
供您参考,我已经尝试通过 SPFile openBinary 方法下载文档。但它只适用于文档较小的情况。请参考以下网站。
在 SharePoint 2010 中阅读文档时出现 ComException
提前致谢。