如何从WP7网站上读取.txt文件?

时间:2011-01-17 22:02:36

标签: file windows-phone-7 text

我正在研究我的论文项目,我需要打开并阅读网站上的文件。我找不到任何东西。我怎么能这样做?

4 个答案:

答案 0 :(得分:1)

使用WebClient。如果您只想将内容作为字符串,则可能类似于:

WebClient cli = new WebClient();
cli.DownloadStringCompleted += // your completed handler
cli.DownloadStringAsync(uri);

由于WP7上的所有网络IO都是异步的,因此您必须附加事件处理程序并等待事件在您获取数据之前引发。

答案 1 :(得分:0)

答案 2 :(得分:0)

好吧,HttpRequest可以读取文件,但我需要在读取之前下载文件,我需要更改txt文件中的一些变量

这是我下载的文件

http://dhmi.gov.tr/UcusBilgileri/1/domarr.txt

答案 3 :(得分:0)

Windows Phone 7中只能使用IsolatedStorage for file IO

要下载文本文件,最简单的方法可能是使用WebClient的DownloadString()方法。然后将此文件的内容写入IsolatedStorage。

您可能也会对此感兴趣: http://weblogs.asp.net/gunnarpeipman/archive/2010/05/06/windows-phone-7-development-using-isolated-storage.aspx