0

我已经向应用程序添加了 3 个文本文件资源,并试图从中读取,但我似乎无法破解它。我尝试过使用文件流并且刚刚尝试过使用 ResourceReader 并且我尝试了 2 的组合但没有运气,关于如何开始使用这个有什么想法吗?

哦,是的,资源文件的目的是将值加载到 form_load 上的组合框中。我决定这样做,以便欧盟可以在他/她认为合适的时候添加和删除 vals。

如果您认为有更好(但仍然不引人注目)的方法,那么请分享。

这是我尝试过但失败的方法:

Filestream 方法,其中 TextFile1(to 3).txt 是资源文本文件,它在 new FileStream() 语句上安静地死掉,没有抛出异常

    private void Scan_Form_Load(object sender, EventArgs e)
    {
        // read combo box values from textfile
        AddVals("TextFile1.txt",cmbBox1);
        AddVals("TextFile2.txt", cmbBox2);
        AddVals("TextFile3.txt", cmbBox3);


    }

    private void AddVals(string fileName,ComboBox thisBox)
    {
        using (FileStream repFs = new FileStream(fileName, FileMode.Open, FileAccess.Read))
        {
            StreamReader strReader = new StreamReader(repFs);
            ArrayList aVals = new ArrayList();
            while (strReader.Peek() != -1)
            {
                aVals.Add(strReader.ReadLine());
            }

            foreach (object val in aVals)
            {
                thisBox.Items.Add(val.ToString());
            }
        }
    }

然后是 ResourceReader + FileStream 方法,同样的问题,主要区别在于我只是在非 fs 方法中调用文件名字符串而不是打开流:

               private void AddVals(string fileName, ComboBox thisBox)
        { 
        using (FileStream fs = new FileStream(fileName, FileMode.Open))
        {
            IResourceReader reader = new ResourceReader(fs);
            IDictionaryEnumerator en = reader.GetEnumerator();
            while (en.MoveNext())
            {
                string val = en.Value.ToString();
                thisBox.Items.Add(val);
            }
            fs.Close();
            reader.Close();
        }
    }
4

2 回答 2

1

您可以像这样将要存储的信息放在 app.config 文件中。如果您只需在解决方案资源管理器中右键单击项目并转到设置选项卡,则设置非常容易。

从技术上讲,用户可以直接编辑 app.config 文件,但您也可以给用户一个表单来编辑它。

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
            <section name="CSharpWindowsFormsApplication1.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        </sectionGroup>
    </configSections>
    <applicationSettings>
        <CSharpWindowsFormsApplication1.Properties.Settings>
            <setting name="comboBox1" serializeAs="Xml">
                <value>
                    <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                        xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                        <string>choice1</string>
                        <string>choice2</string>
                        <string>choice3</string>
                        <string>choice4</string>
                        <string>choice5</string>
                    </ArrayOfString>
                </value>
            </setting>
            <setting name="comboBox2" serializeAs="Xml">
                <value>
                    <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                        xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                        <string>choice1</string>
                        <string>choice2</string>
                        <string>choice3</string>
                        <string>choice4</string>
                        <string>choice5</string>
                    </ArrayOfString>
                </value>
            </setting>
            <setting name="comboBox3" serializeAs="Xml">
                <value>
                    <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                        xmlns:xsd="http://www.w3.org/2001/XMLSchema">
                        <string>choice1</string>
                        <string>choice2</string>
                        <string>choice3</string>
                        <string>choice4</string>
                        <string>choice5</string>
                    </ArrayOfString>
                </value>
            </setting>
        </CSharpWindowsFormsApplication1.Properties.Settings>
    </applicationSettings>
</configuration>

编辑:如果不明显,这些是 System.Collections.Specialized.StringCollection 类型设置。

和...

        private void Scan_Form_Load(object sender, EventArgs e)
    {
        // read combo box values from textfile
        comboBox1.DataSource = Properties.Settings.Default.comboBox1;
        comboBox2.DataSource = Properties.Settings.Default.comboBox2;
        comboBox3.DataSource = Properties.Settings.Default.comboBox3;
    }

编辑: 就像我在顶部说的,右键单击解决方案资源管理器中的项目并转到设置选项卡。一旦你在那里:

  1. 使用您希望的任何名称创建一个设置,例如“comboBox1”。
  2. 将其类型更改为System.Collections.Specialized.StringCollection
  3. 将范围更改为您喜欢的任何内容。(您可以使用它来设置该设置是否适用于给定用户或整个应用程序)
  4. 单击值编辑器,然后单击该行右侧的省略号 [...] 按钮。
  5. 在每一行添加一个您想要的选项。
  6. 根据需要重复。

Visual Studio 将负责如何在配置文件中对其进行格式化,并设置工作所需的一切。

于 2011-07-18T07:11:17.860 回答
0

确切地说,改用 TInifile。在节不存在时第一次执行时,写入默认值。下次只需阅读 inifile。

欧盟的inifile应该易于编辑

于 2011-07-18T06:54:29.807 回答