C# UWP 文本文件到字符串列表
C# UWP textfile to list of strings
我正在为我的树莓派创建一个 UWP
应用程序(最新的 windows 物联网)。
我正在尝试从位于名为 Words 的地图下的项目文件夹中的 .txtfile
中获取字符串列表。
到目前为止,这是我的代码。
public async void GenereerGokWoord(int character)
{
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(
new Uri("ms-appx:///Words//5-letterwoorden.txt")
);
}
通过在 }
末尾设置断点,我可以确认这段代码可以找到 .txt
文件。
但现在我不知道如何从这一点开始获取字符串列表。
.txt
文件看起来像东西
word 1
word 2
word 3
如果你想将文件内容作为一个列表,每行作为一个项目,使用FileIO.ReadLinesAsync()
IList<string> data = await FileIO.ReadLinesAsync(file);
List<string> finallist = data.ToList();
您的最终列表应包含列表中的所有单词。
我正在为我的树莓派创建一个 UWP
应用程序(最新的 windows 物联网)。
我正在尝试从位于名为 Words 的地图下的项目文件夹中的 .txtfile
中获取字符串列表。
到目前为止,这是我的代码。
public async void GenereerGokWoord(int character)
{
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(
new Uri("ms-appx:///Words//5-letterwoorden.txt")
);
}
通过在 }
末尾设置断点,我可以确认这段代码可以找到 .txt
文件。
但现在我不知道如何从这一点开始获取字符串列表。
.txt
文件看起来像东西
word 1
word 2
word 3
如果你想将文件内容作为一个列表,每行作为一个项目,使用FileIO.ReadLinesAsync()
IList<string> data = await FileIO.ReadLinesAsync(file);
List<string> finallist = data.ToList();
您的最终列表应包含列表中的所有单词。