提问者:小点点

在Windows Phone 8.1运行时中读取项目文件夹中的文本文件


我想在第一次启动应用程序时将项目的根文件夹中的一个文件。txt读入我的数据库,但我不知道怎么做。有谁知道我该怎么做,请帮帮我。。。谢谢

我在Windows Phone8.1运行时工作。


共3个答案

匿名用户

例如,如果您想从项目中读取文件,您可以这样做:

string fileContent;
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(new Uri(@"ms-appx:///example.txt"));
using (StreamReader sRead = new StreamReader(await file.OpenStreamForReadAsync()))
fileContent = await sRead.ReadToEndAsync();

另外,请确保您已经将文件的构建操作设置为内容(它应该是默认的)。

有关URI方案的更多信息,请访问MSDN。

匿名用户

访问文件的方式略有不同:

var folder = Windows.ApplicationModel.Package.Current.InstalledLocation;
var file = await folder.GetFileAsync("sample.txt");
var contents = await Windows.Storage.FileIO.ReadTextAsync(file);

匿名用户

它只能在中运行。以前的windows phone版本(CodeWindows phone 8/Code>,)都无法运行您的应用程序。