我使用Excel 2007和OLE-DB提供程序生成.xlsx文件。文件有2张,第1张是包含图表的纸张,第2张包含数据。
我正在使用以下连接字符串来生成excel:
using (OleDbConnection conn = new OleDbConnection ("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Test.xlsx;Extended Properties=\"Excel 12.0 XML;HDR=Yes;IMEX=0\""))
使用Excel-Interop生成图表,然后关闭工作簿。接下来是一个新的工作流程启动,打开相同的Excel文件并插入数据。
守则是这样的。
using (OleDbConnection conn = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + strFilename + ";Extended Properties=\"Excel 12.0 XML;HDR=Yes;IMEX=0\""))
{
clsCommon.LogMessages("Excel Connection opening");
conn.Open();
clsCommon.LogMessages("Connection opened.");
using (OleDbCommand cmd_createTable = new OleDbCommand("CREATE TABLE [" + SheetName + "](" + sb.ToString() + ")", conn))
{
cmd_createTable.ExecuteNonQuery();
//cmd_createTable.CommandTimeout = 14000;
}
clsCommon.LogMessages("Excel Sheet Created.");
//write the data
List<string> lstRowData = new List<string>();
string rowdata = string.Empty;
foreach (DataRow row in dt.Rows)
{
for (int i = 0; i < dt.Columns.Count; i++)
{
if (row[i].ToString().Contains("'"))
{
rowdata = rowdata + "'" + row[i].ToString().Replace("'", "''") + "',";
}
else
{
rowdata = rowdata + "'" + row[i].ToString() + "',";
}
}
rowdata = rowdata.Remove(rowdata.Length - 1, 1);
lstRowData.Add(rowdata);
rowdata = string.Empty;
}
#region Creating Single Command to execute multiple statements.
using (OleDbCommand cmd_Insert = new OleDbCommand())
{
clsCommon.LogMessages("Data Rows for Sheet:" + SheetName + ", is: " + lstRowData.Count.ToString());
cmd_Insert.Connection = conn;
cmd_Insert.CommandTimeout = 14000;
foreach (string item in lstRowData)
{
cmd_Insert.CommandText = "Insert into [" + SheetName + "$] values(" + item + ")";
cmd_Insert.ExecuteNonQuery();
}
cmd_Insert.Dispose();
}
#endregion
conn.Close();
conn.Dispose();
}
问题在于,在具有较少数据量的工作表中正确生成了Excel。
对于数据超过8k(大约)的工作表,上面的代码行正在将数据正确地写入excel,但是当文件缓冲到网页时,不存在具有大量记录的数据表。
将文件缓冲到网页的代码如下:
Response.Clear();
Response.ClearContent();
Response.ClearHeaders();
Response.BufferOutput = true;
Response.ContentType = "application/vnd.ms-excel";
Response.AppendHeader("Content-Disposition", string.Format("attachment; filename={0}", Path.GetFileName(newFilePath)));
Response.WriteFile(newFilePath);
if (Response.IsClientConnected)
{
Response.Flush();
}
try
{
Response.Close();
HttpContext.Current.ApplicationInstance.CompleteRequest();
}
catch
{
// Eat Exception
}
奇怪的事实:
相同的代码在我的本地开发环境中正常工作,并且所有工作表都已正确填充。我在我的机器和服务器上安装了Excel 2007。 我已使用DCOM配置管理器(在组件服务下)检查了服务器上的权限,它们看起来是正确的。
已尝试的变通办法
来自
扩展属性= \“Excel 12.0 XML; HDR =是; IMEX = 0 \”“))
要
扩展属性= \“Excel 12.0; HDR =是; IMEX = 0 \”“))
没有运气。
请你帮我解决这个问题。 我是否需要在服务器上更改Excel 2007的某些设置以启用大数据导出。
感谢您的快速帮助
- Shalabh Gupta
答案 0 :(得分:2)
有许多选项可以在没有Interop的情况下读取/编辑/创建Excel文件:
MS提供免费的OpenXML SDK V 2.0 - 请参阅http://msdn.microsoft.com/en-us/library/bb448854%28office.14%29.aspx(仅限XLSX)
这可以读取+写入MS Office文件(包括Excel)。
另一个免费选项见http://www.codeproject.com/KB/office/OpenXML.aspx(仅限XLSX)
如果你需要更多像处理旧的Excel版本(如XLS,不仅仅是XLSX),渲染,创建PDF,公式等,那么有不同的免费和商业库,如ClosedXML(免费,仅限XLSX), EPPlus(免费,仅限XLSX),Aspose.Cells,SpreadsheetGear,LibXL和Flexcel等。
答案 1 :(得分:0)
我遇到超过6k记录的相同问题,
将.xlsx
更改为.xls
对我有用。