将多个文件读入字符串

时间:2016-02-17 18:38:20

标签: c# streamreader

编辑:我忘了添加例外

我已经制作了这段代码,试图将多个文件读入一个字符串(后来我可以拆分,每个文件最后都有一个单词像分隔符一样)。

但每当我尝试打开文件时,它都会引发异常: 附加信息:对象引用未设置为对象的实例。

我尝试更改代码但没有奏效。我是C#的新手,无法找到我做错的事。任何帮助将不胜感激。 PS:我正在使用一个单独的类来保存我的变量 - 因为我知道我需要在代码的其他部分使用一些'em我决定让它们成为全局变量。

由于

代码:

nil

班级:

private void openPPFToolStripMenuItem_Click(object sender, EventArgs e)
        {
            using (OpenFileDialog open = new OpenFileDialog())
            {
                // Filter for PPF
                open.Filter = "PPF Files|*.PPF";
                open.Multiselect = true;
                open.Title = "Select a PPF File";
                if (open.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                {
//Obtaining list of filenames
                    vars.fullFileName = new List<String>(open.FileNames);
                    vars.filepath = open.FileName;
                    foreach (string fileName in vars.fullFileName)
                    {
                        LoadedFiles.Items.Add(fileName.Substring(fileName.LastIndexOf(@"\") + 1));  
                    }
                    for(int i=0; i< vars.fullFileName.Count; i++)
                    {
                        using (var sr = new StreamReader(vars.filepath))
                        {
                            vars.files[i] = sr.ReadToEnd(); //I supposed that each string position could hold an entire file.
                        }
                        string teste1 = vars.files[3].ToString(); //Just trying to show the contents
                        textBox1.Text = teste1;
                    }


                }
            }
        }

2 个答案:

答案 0 :(得分:0)

你的阵列&#34;文件&#34;没有初始化。你需要这样的东西:

Files = new string[3];

如果数组应该包含3个元素。

答案 1 :(得分:0)

我认为您在阅读文件方面存在问题。

试试这样。

  foreach (String file in openFileDialog1.FileNames) 
    {
      string fileContent = File.ReadAllText(file);
     //do your activity here
    }