我试图使用Visual Studio localhost从.aspx页面读取Excel文件。我将Excel保存在根文件夹中,但在尝试阅读时,它显示以下异常:
Microsoft Office Access数据库引擎无法打开或写入 文件 ''。它已经由其他用户或您独家打开 需要获得查看和写入数据的权限。
我的oledb代码
string connString = ConfigurationManager.ConnectionStrings["xlsx"].ConnectionString;
OleDbConnection oledbConn = new OleDbConnection(connString);
try
{
// Open connection
oledbConn.Open();
// Create OleDbCommand object and select data from worksheet Sheet1
OleDbCommand cmd = new OleDbCommand("SELECT * FROM [Sheet1$]", oledbConn);
// Create new OleDbDataAdapter
OleDbDataAdapter oleda = new OleDbDataAdapter();
oleda.SelectCommand = cmd;
// Create a DataSet which will hold the data extracted from the worksheet.
DataSet ds = new DataSet();
// Fill the DataSet from the data extracted from the worksheet.
oleda.Fill(ds, "Employees");
// Bind the data to the GridView
GridView1.DataSource = ds.Tables[0].DefaultView;
GridView1.DataBind();
}
catch(Exception ex)
{
throw ex;
}
finally
{
// Close connection
oledbConn.Close();
}
连接字符串
<connectionStrings>
<add name="xls" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=ExcelToParse.xls;Extended Properties=Excel 8.0"/>
<add name="xlsx" connectionString="Provider=Microsoft.ACE.OLEDB.12.0;Data Source=ExcelToParse.xlsx;Extended Properties=Excel 12.0"/>
</connectionStrings>
有人可以指出我在这里做错了吗?
答案 0 :(得分:1)
首先在命令提示符下运行此命令以终止所有打开的Excel进程。
taskkill /f /im excel.exe
您需要处置连接对象。然后将finally块中的代码更改为 -
finally
{
// Close connection
oledbConn.Close();
oledbConn.Dispose();
System.Runtime.InteropServices.Marshal.ReleaseComObject(oledbConn);
}
如果有效,请告诉我。