C# 用datagridview导入excel表格提示外部表不是预期的格式 10
strPath=openFileDialog1.FileName;stringstrCon="provider=microsoft.jet.oledb.4.0;datas...
strPath = openFileDialog1.FileName;
string strCon = "provider=microsoft.jet.oledb.4.0;data source=" + strPath + ";extended properties=excel 8.0";
OleDbConnection Con = new OleDbConnection(strCon);
string strSql = "select * from [Sheet$]";
OleDbCommand Cmd = new OleDbCommand(strSql, Con);
OleDbDataAdapter da = new OleDbDataAdapter(Cmd);
DataSet ds = new DataSet();
da.Fill(ds, "Sheet1");
dataGridView1.DataSource = ds.Tables[0];
代码是这样的 ,请问哪里出了问题?? 展开
string strCon = "provider=microsoft.jet.oledb.4.0;data source=" + strPath + ";extended properties=excel 8.0";
OleDbConnection Con = new OleDbConnection(strCon);
string strSql = "select * from [Sheet$]";
OleDbCommand Cmd = new OleDbCommand(strSql, Con);
OleDbDataAdapter da = new OleDbDataAdapter(Cmd);
DataSet ds = new DataSet();
da.Fill(ds, "Sheet1");
dataGridView1.DataSource = ds.Tables[0];
代码是这样的 ,请问哪里出了问题?? 展开
4个回答
展开全部
//FileUpload1.PostedFile.FileName 文件路径+文件名
if (fileExt == ".xlsx") //excel2007的文件
{
ViewState["strConn"] = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='" + FileUpload1.PostedFile.FileName + "';Extended Properties='Excel 12.0;HDR=YES'";
}
if (fileExt == ".xls") //excel2003的文件
{
ViewState["strConn"] = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + FileUpload1.PostedFile.FileName + "';Extended Properties='Excel 8.0;HDR=YES;'";
}
if (fileExt == ".xlsx") //excel2007的文件
{
ViewState["strConn"] = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='" + FileUpload1.PostedFile.FileName + "';Extended Properties='Excel 12.0;HDR=YES'";
}
if (fileExt == ".xls") //excel2003的文件
{
ViewState["strConn"] = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + FileUpload1.PostedFile.FileName + "';Extended Properties='Excel 8.0;HDR=YES;'";
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-02-27
展开全部
你的excel表是xlsx格式的吧
打开excel 表格——》另存为 ——》xls格式
打开excel 表格——》另存为 ——》xls格式
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
外部表如果不是预期的格式,怎么能导入到数据库的呢?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
String strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + path + ";Extended Properties='Excel 8.0;HDR=NO;IMEX=1'"
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询