DataSet匯出到Excel比較完整的解決方案 二 --伺服器端生成檔案 downmoon
阿新 • • 發佈:2018-11-15
分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!
在前一篇文章中,介紹了DataSet匯出到Excel時客戶端生成檔案的幾種思路,接著往下說,伺服器端生成檔案,使用者直接下載,應該格式是可以保證的!
於是直接呼叫Excel的API生成。程式碼如下:
[c-sharp] view plain copy print ?
- public static void DataSetToLocalExcel(DataSet dataSet, string outputPath, bool deleteOldFile)
- {
- if (deleteOldFile)
- {
- if (System.IO.File.Exists(outputPath)) { System.IO.File.Delete(outputPath); }
- }
- // Create the Excel Application object
- ApplicationClass excelApp = new ApplicationClass();
- // Create a new Excel Workbook
- Workbook excelWorkbook = excelApp.Workbooks.Add(Type.Missing);
- int sheetIndex = 0;
- // Copy each DataTable
- foreach (System.Data.DataTable dt in dataSet.Tables)
- {
- // Copy the DataTable to an object array
- object[,] rawData = new object[dt.Rows.Count + 1, dt.Columns.Count];
- // Copy the column names to the first row of the object array
- for (int col = 0; col < dt.Columns.Count; col++)
- {
- rawData[0, col] = dt.Columns[col].ColumnName;
- }
- // Copy the values to the object array
- for (int col = 0; col < dt.Columns.Count; col++)
- {
- for (int row = 0; row < dt.Rows.Count; row++)
- {
- rawData[row + 1, col] = dt.Rows[row].ItemArray[col];
- }
- }
- // Calculate the final column letter
- string finalColLetter = string.Empty;
- string colCharset = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
- int colCharsetLen = colCharset.Length;
- if (dt.Columns.Count > colCharsetLen)
- {
- finalColLetter = colCharset.Substring(
- (dt.Columns.Count - 1) / colCharsetLen - 1, 1);
- }
- finalColLetter += colCharset.Substring(
- (dt.Columns.Count - 1) % colCharsetLen, 1);
- // Create a new Sheet
- Worksheet excelSheet = (Worksheet)excelWorkbook.Sheets.Add(
- excelWorkbook.Sheets.get_Item(++sheetIndex),
- Type.Missing, 1, XlSheetType.xlWorksheet);
- excelSheet.Name = dt.TableName;
- // Fast data export to Excel
- string excelRange = string.Format("A1:{0}{1}",
- finalColLetter, dt.Rows.Count + 1);
- excelSheet.get_Range(excelRange, Type.Missing).Value2 = rawData;
- // Mark the first row as BOLD
- ((Range)excelSheet.Rows[1, Type.Missing]).Font.Bold = true;
- }
- //excelApp.Application.AlertBeforeOverwriting = false;
- excelApp.Application.DisplayAlerts = false;
- // Save and Close the Workbook
- excelWorkbook.SaveAs(outputPath, XlFileFormat.xlWorkbookNormal, Type.Missing,
- Type.Missing, Type.Missing, Type.Missing, XlSaveAsAccessMode.xlExclusive,
- Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
- excelWorkbook.Close(true, Type.Missing, Type.Missing);
- excelWorkbook = null;
- // Release the Application object
- excelApp.Quit();
- excelApp = null;
- // Collect the unreferenced objects
- GC.Collect();
- GC.WaitForPendingFinalizers();
- }
說明下,其中的 xlsApp.Application.DisplayAlerts = false; 的作用是不顯示確認對話方塊
也可以逐Cell讀取,那樣可能會慢。本方法速度還過得去。
生成Winform程式碼測試沒錯,部署時,以為只要引用兩個dll就可以了
Microsoft.Office.Interop.Excel.dll
Office.dll
那成想,問題接著來了,當在WebForm下呼叫時, 提示“檢索 COM 類工廠中 CLSID 為 {00024500-0000-0000-C000-000000000046} 的元件時失敗,原因是出現以下錯誤: 8000401a ”
暈! Google下,解決方案是在伺服器上安裝Office,並配置DCOM許可權。步驟如下:
[css] view plain copy print ?
- 配置 DCOM 中 EXCEL 應用程式:
- 要在互動式使用者帳戶下設定 Office 自動化伺服器,請按照下列步驟操作:
- 1. 以管理員身份登入到計算機,並使用完整安裝來安裝(或重新安裝)Office。為了實現系統的可靠性,建議您將 Office CD-ROM 中的內容複製到本地驅動器並從此位置安裝 Office。
- 2. 啟動要自動執行的 Office 應用程式。這會強制該應用程式進行自我註冊。
- 3. 執行該應用程式後,請按 Alt+F11 以載入 Microsoft Visual Basic for Applications (VBA) 編輯器。這會強制 VBA 進行初始化。
- 4. 關閉應用程式,包括 VBA。
- 5. 單擊開始,單擊執行,然後鍵入 DCOMCNFG。選擇要自動執行的應用程式。應用程式名稱如下所示:
- Microsoft Access 97 - Microsoft Access 資料庫
- Microsoft Access 2000/2002 - Microsoft Access 應用程式
- Microsoft Excel 97/2000/2002 - Microsoft Excel 應用程式
- Microsoft Word 97 - Microsoft Word Basic
- Microsoft Word 2000/2002 - Microsoft Word 文件
- 單擊屬性開啟此應用程式的屬性對話方塊。
- 6. 單擊安全選項卡。驗證使用預設的訪問許可權和使用預設的啟動許可權已選中。
- 7. 單擊標識選項卡,然後選擇互動式使用者。
- 8. 單擊確定,關閉屬性對話方塊並返回主應用程式列表對話方塊。
- 9. 在 DCOM 配置對話方塊中,單擊預設安全性選項卡。
- 10. 單擊訪問許可權的編輯預設值。驗證訪問許可權中是否列出下列使用者,如果沒有列出,則新增這些使用者:
- SYSTEM
- INTERACTIVE
- Everyone
- Administrators
- IUSR_ <machinename> *
- IWAM_ <machinename> *
- * 這些帳戶僅在計算機上安裝了 Internet Information Server (IIS) 的情況下才存在。
- 11. 確保允許每個使用者訪問,然後單擊確定。
- 12. 單擊啟動許可權的編輯預設值。驗證啟動許可權中是否列出下列使用者,如果沒有列出,則新增這些使用者:
- SYSTEM
- INTERACTIVE
- Everyone
- Administrators
- IUSR_ <machinename> *
- IWAM_ <machinename> *
- * 這些帳戶僅在計算機上安裝有 IIS 的情況下才存在。
- 13. 確保允許每個使用者訪問,然後單擊確定。
- 14. 單擊確定關閉 DCOMCNFG。
- 如果你之前起用了身份模擬 (在 web.config 中配置了 <identity impersonate= "true "/> ) ,需要刪除之!
- 15.更新安裝office,把.net可程式設計元件安裝到本機(excel元件)
- 如果還是不行.幹脃把互動式使用者 換成"啟動使用者"
折騰了一番,總算可以用了!·只是伺服器上裝Office總感覺不爽,於是再嘗試下別的方法:
Reading and Writing Excel using OLEDB
主要的類檔案如下:
[c-sharp] view plain copy print ?
- /**//// <summary>
- /// Summary description for ExcelReader.
- /// </summary>
- public class ExcelReader : IDisposable
- {
- Variables#region Variables
- private int[] _PKCol;
- private string _strExcelFilename;
- private bool _blnMixedData = true;
- private bool _blnHeaders = false;
- private string _strSheetName;
- private string _strSheetRange;
- private bool _blnKeepConnectionOpen = false;
- private OleDbConnection _oleConn;
- private OleDbCommand _oleCmdSelect;
- private OleDbCommand _oleCmdUpdate;
- #endregion
- properties#region properties
- public int[] PKCols
- {
- get { return _PKCol; }
- set { _PKCol = value; }
- }
- public string ColName(int intCol)
- {
- string sColName = "";
- if (intCol < 26)
- sColName = Agronet.Common.Framework.Util.SQLParser.StringParse(Convert.ToChar((Convert.ToByte((char)'A') + intCol)));
- else
- {
- int intFirst = ((int)intCol / 26);
- int intSecond = ((int)intCol % 26);
- sColName = Agronet.Common.Framework.Util.SQLParser.StringParse(Convert.ToByte((char)'A') + intFirst);
- sColName += Agronet.Common.Framework.Util.SQLParser.StringParse(Convert.ToByte((char)'A') + intSecond);
- }
- return sColName;
- }
- public int ColNumber(string strCol)
- {
- strCol = strCol.ToUpper();
- int intColNumber = 0;
- if (strCol.Length > 1)
- {
- intColNumber = Agronet.Common.Framework.Util.SQLParser.ShortParse(Convert.ToByte(strCol[1]) - 65);
- intColNumber += Agronet.Common.Framework.Util.SQLParser.ShortParse(Convert.ToByte(strCol[1]) - 64) * 26;
- }
- else
- intColNumber = Agronet.Common.Framework.Util.SQLParser.ShortParse(Convert.ToByte(strCol[0]) - 65);
- return intColNumber;
- }
- public String[] GetExcelSheetNames()
- {
- System.Data.DataTable dt = null;
- try
- {
- if (_oleConn == null) Open();
- // Get the data table containing the schema
- dt = _oleConn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, null);
- if (dt == null) { return null; }
- String[] excelSheets = new String[dt.Rows.Count];
- int i = 0;
- // Add the sheet name to the string array.
- foreach (DataRow row in dt.Rows)
- {
- string strSheetTableName = row["TABLE_NAME"].ToString();
- excelSheets[i] = strSheetTableName.Substring(0, strSheetTableName.Length - 1);
- i++;
- }
- return excelSheets;
- }
- catch (Exception ex)//tony 2008.12.31 update
- {
- string s = ex.Message; return null;
- }
- finally
- {
- // Clean up.
- if (this.KeepConnectionOpen == false)
- {
- this.Close();
- }
- if (dt != null)
- {
- dt.Dispose();
- dt = null;
- }
- }
- }
- public string ExcelFilename
- {
- get { return _strExcelFilename; }
- set { _strExcelFilename = value; }
- }
- public string SheetName
- {
- get { return _strSheetName; }
- set { _strSheetName = value; }
- }
- public string SheetRange
- {
- get { return _strSheetRange; }
- set
- {
- if (value.IndexOf(":") == -1) throw new Exception("Invalid range length");
- _strSheetRange = value;
- }
- }
- public bool KeepConnectionOpen
- {
- get { return _blnKeepConnectionOpen; }
- set { _blnKeepConnectionOpen = value; }
- }
- public bool Headers
- {
- get { return _blnHeaders; }
- set { _blnHeaders = value; }
- }
- public bool MixedData
- {
- get { return _blnMixedData; }
- set { _blnMixedData = value; }
- }
- #endregion
- Methods#region Methods
- Excel Connection#region Excel Connection
- private string ExcelConnectionOptions()
- {
- string strOpts = "";
- if (this.MixedData == true)
- strOpts += "Imex=1;";
- if (this.Headers == true)
- strOpts += "HDR=Yes;";
- else
- strOpts += "HDR=No;";
- return strOpts;
- }
- private string ExcelConnection()
- {
- return
- @"Provider=Microsoft.Jet.OLEDB.4.0;" +
- @"Data Source=" + _strExcelFilename + ";" +
- @"Extended Properties=" + Convert.ToChar(34).ToString() +
- @"Excel 8.0;" + ExcelConnectionOptions() + Convert.ToChar(34).ToString();
- }
- #endregion
- Open / Close#region Open / Close
- public void Open()
- {
- try
- {
- if (_oleConn != null)
- {
- if (_oleConn.State == ConnectionState.Open)
- {
- _oleConn.Close();
- }
- _oleConn = null;
- }
-