用StreamReader打开一个资源文件

本文关键字:一个 资源 源文件 StreamReader | 更新日期: 2023-09-27 17:49:44

这行不通:

string fileContent = Resource.text;
    StreamReader read = File.OpenText(fileContent);
    string line;
            char[] splitChar = "|".ToCharArray();
            while ((line = read.ReadLine()) != null)
            {
                string[] split = line.Split(splitChar);
                string name = split[0];
                string lastname = split[1];
            }
            read.Dispose();

如何打开资源文件以获取其内容?

用StreamReader打开一个资源文件

试试:

string fileContent = Resource.text;
using (var reader = new StringReader(fileContent))
{
    string line;
    while ((line = reader.ReadLine()) != null)
    {
        string[] split = line.Split('|');
        string name = split[0];
        string lastname = split[1];
    }
}

我认为变量fileContent已经包含了您需要的所有内容。

要读取资源,你需要一个名为"ResourceReader"的特殊流,你可以这样使用它:

string fileContent = "<your resource file>";
using (ResourceReader reader = new ResourceReader(fileContent))
{
    foreach (IDictionaryEnumerator dict in reader)
    {
        string key = dict.Key as string;
        object val = dict.Value;
    }
}