14

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

我在 Windows Phone 8.1 运行时工作。

4

3 回答 3

33

如果你想从你的项目中读取一个文件,你可以这样做:

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 中找到

于 2014-05-30T10:04:59.487 回答
9

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

var folder = Windows.ApplicationModel.Package.Current.InstalledLocation;
var file = await folder.GetFileAsync("sample.txt");
var contents = await Windows.Storage.FileIO.ReadTextAsync(file);
于 2014-06-06T12:50:59.703 回答
1

它只能在Windows Phone 8.1. 以前版本的 windows phone ( Windows Phone 8, Windows Phone 7) 都无法运行您的应用程序。

于 2014-05-29T13:24:03.380 回答