winform打开Excel读取数据并显示到datagridview中


[c-sharp] view plain copy print ?
  1. ///   
  2.       /// 选择相应的Excel文件  
  3.       ///   
  4.       ///   
  5.       ///   
  6.       private void btn1_Click(object sender, EventArgs e)  
  7.       {  
  8.          try  
  9.          {  
  10.             //获取Excel文件路径和名称  
  11.             OpenFileDialog odXls = new OpenFileDialog();  
  12.             // 指定相应的打开文档的目录  
  13.             odXls.InitialDirectory = "C://";  
  14.             // 设置文件格式  
  15.             odXls.Filter = "Excel files (*.xls)|*.xls";  
  16.             odXls.FilterIndex = 2;  
  17.             odXls.RestoreDirectory = true;  
  18.             if (odXls.ShowDialog() == DialogResult.OK)  
  19.             {  
  20.                txtFilePath.Text = odXls.FileName;  
  21.                OleDbConnection oledbConn = null;  
  22.                string sConnString = "provider=Microsoft.Jet.OLEDB.4.0;data source=" + odXls.FileName + ";Extended Properties=Excel 5.0;Persist Security Info=False";  
  23.                oledbConn = new OleDbConnection(sConnString);  
  24.                oledbConn.Open();  
  25.                DataTable dt = oledbConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { nullnullnull"TABLE" });  
  26.                combox1.Items.Clear();  
  27.                foreach (DataRow dr in dt.Rows)  
  28.                {  
  29.                   combox1.Items.Add((String)dr["TABLE_NAME"]);  
  30.                }  
  31.                if (combox1.Items.Count > 0)  
  32.                   combox1.SelectedIndex = 0;  
  33.             }  
  34.          }  
  35.          catch (Exception Ex)  
  36.          {  
  37.             MessageProcess.ShowError(Ex.Message);  
  38.          }  
  39.       }  
  40.       ///   
  41.       ///  读取相应的表名的Excel文件中数据到当前DataGridview中显示  
  42.       ///   
  43.       ///   
  44.       ///   
  45.       private void btn2_Click(object sender, EventArgs e)  
  46.       {  
  47.          OleDbConnection ole = null;  
  48.          OleDbDataAdapter da = null;  
  49.          DataTable dt = null;  
  50.          string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;"  
  51.                           + "Data Source=" + txtFilePath.Text.Trim() + ";"  
  52.                           + "Extended Properties=Excel 5.0";  
  53.          string sTableName = combox1.Text.Trim();  
  54.          string strExcel = "select * from [" + sTableName + "]";  
  55.          try  
  56.          {  
  57.             ole = new OleDbConnection(strConn);  
  58.             ole.Open();  
  59.             da = new OleDbDataAdapter(strExcel, ole);  
  60.             dt = new DataTable();  
  61.             da.Fill(dt);  
  62.             this.xlsExpData.DataSource = dt;  
  63.             for (int i = 0; i < dt.Columns.Count; i++)  
  64.             {  
  65.                xlsExpData.Columns[i].AutoSizeMode = DataGridViewAutoSizeColumnMode.AllCells;  
  66.             }  
  67.             ole.Close();  
  68.          }  
  69.          catch (Exception Ex)  
  70.          {  
  71.             MessageBox.Show(Ex.Message);  
  72.          }  
  73.          finally  
  74.          {  
  75.             if (ole != null)  
  76.                ole.Close();  
  77.          }  
  78.       }  

你可能感兴趣的:(Excel操作类)