• C#导入EXCEL数据


      public static void InputUserFromExcel(string filePath)
            {
                string FileExName = filePath.Substring(filePath.LastIndexOf(".") + 1);
                string mystring = "Provider = Microsoft.ACE.OLEDB.12.0 ; Data Source ='" + filePath + "';Extended Properties ='Excel 12.0;HDR=YES;IMEX=1'";
                if (FileExName == "xls")
                {
                    mystring = "Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source ='" + filePath + "';Extended Properties=Excel 8.0";
                }
                OleDbConnection cnnxls = new OleDbConnection(mystring);
                cnnxls.Open();
                OleDbDataAdapter myDa = new OleDbDataAdapter("select * from [pos_260$]", cnnxls);
                DataSet ZLDs = new DataSet();
                myDa.Fill(ZLDs);
                Console.Write(ZLDs.Tables[0].Rows.Count);
                Console.Read();
    
            }
        }
    

      

  • 相关阅读:
    6月17日
    6月16日
    6月15日
    6月14日
    6月13日
    6月12日
    6月11日
    6月10日
    6月8日
    6月5日
  • 原文地址:https://www.cnblogs.com/wangzhenghua/p/3622679.html
Copyright © 2020-2023  润新知