zoukankan      html  css  js  c++  java
  • C#读取EXCEL数据

    #region set connection
       string strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source= "+this.txtPath.Text+";Extended Properties=Excel 8.0;";
       myDataReader = null;
      craboDbConnection = new OleDbConnection(strConn);
       OleDbCommand myOleDbCommand = new OleDbCommand("SELECT * FROM [Sheet1$]", myOleDbConnection);
       #endregion

       try
       {
        myOleDbConnection.Open();
        myDataReader = myOleDbCommand.ExecuteReader();
        while (myDataReader.Read())
        {
           this.txtSeq.Text=Convert.ToString(myDataReader.GetValue(0));//列1
    this.txtName.Text=Convert.ToString(myDataReader.GetValue(1));//列2
           this.txtPIN.Text=Convert.ToString(myDataReader.GetValue(2));//列3
        }
    }
       #region Catch
       catch(System.Threading.ThreadAbortException e)
       {
        System.Threading.Thread.ResetAbort();
        this.lblResult.Text = "线程被中断..."+e.Message;
       }
       catch(Exception ex)
       {
        System.Windows.Forms.MessageBox.Show(ex.ToString());
       }
       finally
       {
        // Always call Close when done reading.
        if (myDataReader != null)
         myDataReader.Close();

        // Close the connection when done with it.
        if (craboDbConnection!=null && craboDbConnection.State == ConnectionState.Open)
         craboDbConnection.Close();

        if(webResponse!=null)
         webResponse.Close();
       }
       #endregion

  • 相关阅读:
    Spyder汉化问题
    Python配置环境变量
    Python、Spyder的环境搭建
    自然语言处理(六)词向量
    自然语言处理(五)深度学习
    自然语言处理(三)主题模型
    自然语言处理(四)统计机器翻译SMT
    自然语言处理(二) 语言模型
    自然语言处理(一)基础知识
    机器学习(九)隐马尔可夫模型HMM
  • 原文地址:https://www.cnblogs.com/java20130723/p/3211516.html
Copyright © 2011-2022 走看看