Esempio n. 1
0
 private void button1_Click(object sender, EventArgs e)
 {
     openFileDialog1.Filter = "txt文件(*.txt)|*.txt";//筛选文件
     openFileDialog1.Multiselect = true;//允许选中多个文件
     if (openFileDialog1.ShowDialog() == DialogResult.OK)//判断是否选中文件
     {
         string Content = string.Empty;
         foreach (string filename in openFileDialog1.FileNames)
         {
             System.IO.StreamReader sr = new//创建流读取器对象
                  System.IO.StreamReader(filename,Encoding.Default);
             Content += sr.ReadToEnd();//读取文件内容
             sr.Close();//关闭流
         }
         textBox1.Text = Content;//显示文件内容
     }
 }
Esempio n. 2
0
 private void button1_Click(object sender, EventArgs e)
 {
     openFileDialog1.Filter      = "txt文件(*.txt)|*.txt";  //筛选文件
     openFileDialog1.Multiselect = true;                  //允许选中多个文件
     if (openFileDialog1.ShowDialog() == DialogResult.OK) //判断是否选中文件
     {
         string Content = string.Empty;
         foreach (string filename in openFileDialog1.FileNames)
         {
             System.IO.StreamReader sr = new //创建流读取器对象
                                         System.IO.StreamReader(filename, Encoding.Default);
             Content += sr.ReadToEnd();      //读取文件内容
             sr.Close();                     //关闭流
         }
         textBox1.Text = Content;            //显示文件内容
     }
 }