1

我看过几篇文章给出了如何从文本文件中读取的示例,以及如何使字符串“公共”(静态或常量)的示例,但我无法将两者结合在一个“函数”中这对我来说很有意义。

我有一个名为“MyConfig.txt”的文本文件。在那,我有2行。

 MyPathOne=C:\TestOne
 MyPathTwo=C:\TestTwo

我希望能够在启动表单时读取该文件,从而使 My​​PathOne 和 MyPathTwo 都可以从表单内的任何位置访问,使用如下所示:

ReadConfig("MyConfig.txt");

我现在尝试这样做的方式是这样的,但这是行不通的:

public voice ReadConfig(string txtFile)
{
    using (StreamReader sr = new StreamResder(txtFile))
    {
        string line;
        while ((line = sr.ReadLine()) !=null)
        {
            var dict = File.ReadAllLines(txtFile)
                           .Select(l => l.Split(new[] { '=' }))
                           .ToDictionary( s => s[0].Trim(), s => s[1].Trim());
        }
        public const string MyPath1 = dic["MyPathOne"];
        public const string MyPath2 = dic["MyPathTwo"];
    }
}

txt 文件可能永远不会超过 5 或 6 行,而且我不会坚持使用 StreamReader 或字典。

只要我可以从任何地方按名称访问路径变量,并且不会添加 400 行代码之类的东西,那么我可以做任何最好、最安全、最快、最简单的事情。

我读过很多帖子,人们说数据应该存储在 XML 中,但我认为这部分真的没那么重要,因为读取文件和获取变量部分几乎都是一样的。除此之外,我宁愿能够使用某人(最终用户)无需了解 XML 即可编辑的纯 txt 文件。(这当然意味着对空行进行大量检查,路径是否存在等等......我可以做那部分,只是想让这部分先工作)。

我已经阅读了有关将 ReadAllLines 用于数组的不同方法,有人说要创建一个新的单独的“类”文件(我还不太了解……但正在研究它)。主要是我想找到一种“稳定”的方式来做到这一点。(顺便说一下,项目正在使用.Net4和Linq)

谢谢!!

4

4 回答 4

0

您需要在函数外部定义变量,以使其他函数可以访问它们。

public string MyPath1; // (Put these at the top of the class.)
public string MyPath2;

public voice ReadConfig(string txtFile)
{
    var dict = File.ReadAllLines(txtFile)
                   .Select(l => l.Split(new[] { '=' }))
                   .ToDictionary( s => s[0].Trim(), s => s[1].Trim());  // read the entire file into a dictionary.

    MyPath1 = dict["MyPathOne"];
    MyPath2 = dict["MyPathTwo"];
}
于 2013-04-06T03:05:17.830 回答
0

您提供的代码甚至无法编译。相反,你可以试试这个:

public string MyPath1;
public string MyPath2;

public void ReadConfig(string txtFile)
{
    using (StreamReader sr = new StreamReader(txtFile))
    {
        // Declare the dictionary outside the loop:
        var dict = new Dictionary<string, string>();

        // (This loop reads every line until EOF or the first blank line.)
        string line;
        while (!string.IsNullOrEmpty((line = sr.ReadLine())))
        {
            // Split each line around '=':
            var tmp = line.Split(new[] { '=' }, 
                                 StringSplitOptions.RemoveEmptyEntries);
            // Add the key-value pair to the dictionary:
            dict[tmp[0]] = dict[tmp[1]];
        }

        // Assign the values that you need:
        MyPath1 = dict["MyPathOne"];
        MyPath2 = dict["MyPathTwo"];
    }
}

考虑到:

  1. 您不能将公共字段声明为方法。

  2. 您不能const在运行时初始化字段。相反,您在编译时为它们提供一个常量值。

于 2013-04-06T03:39:35.037 回答
0

知道了。谢谢!

            public static string Path1;
            public static string Path2;
            public static string Path3;

            public void ReadConfig(string txtFile)
            {
                using (StreamReader sr = new StreamReader(txtFile))
                {
                var dict = new Dictionary<string, string>();
                string line;
                while (!string.IsNullOrEmpty((line = sr.ReadLine())))
                {
                            dict = File.ReadAllLines(txtFile)
                           .Select(l => l.Split(new[] { '=' }))
                           .ToDictionary( s => s[0].Trim(), s => s[1].Trim());
                }
                Path1 = dict["PathOne"];
                Path2 = dict["PathTwo"];
                Path3 = Path1 + @"\Test";
                }
            }
于 2013-04-06T11:12:41.363 回答
0

这个问题类似于Get parameters out of text file

(我把答案放在那里。我“不能”把它贴在这里。)

(不确定我是否应该将此问题“标记”为重复。“标记”“关闭”。)

(重复的问题会合并吗?每个问题在 [通常是蹩脚的] 问题或 [影响力不足和力过大的] 答案的措辞中都有优点。合并后的版本可能是最好的,但合并很少是微不足道的。)

于 2017-02-23T23:25:09.773 回答