首页 > 代码库 > 文件转换table
文件转换table
protected static DataTable GetDataTable(string fileName) { //execl 2003和2007以上的版本所用的引擎是不一样的 //excel2007,兼容2003 //string strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + fileName + " ;Extended Properties=Excel 8.0";//2003 //string strCon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + fileName + ";Extended Properties=‘Excel 12.0 Xml;HDR=YES;IMEX=1‘;";//2007以上 string strCon = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + fileName + ";Extended Properties=‘Excel 12.0 Xml;HDR=YES;IMEX=1‘;"; DataSet ds = new DataSet(); using (OleDbConnection conn = new OleDbConnection(strCon)) { string sql = "select * from [Sheet1$]"; OleDbCommand cmd = new OleDbCommand(sql, conn); OleDbDataAdapter da = new OleDbDataAdapter(cmd); da.Fill(ds); } return ds.Tables[0]; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。