問題:最近在項目中遇到,不同客戶機安裝不同Office版本,在導出Excel時,發生錯誤。
找不到Excel Com組件,錯誤信息如下。
未能加載文件或程序集“Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”或它的某一個依賴項。系統找不到指定的文件。
解決方法:
1.引用高版本的的Excel.dll組件,最新版本14.0.0 防止客戶安裝高版本如Office不能導出。
(DLL組件可以兼容低版本,不能兼容高版本)
2.右鍵DLL屬性,將引用的Excel.dll組件,嵌入互操作類型為True,特定版本=false .這一步非常關鍵。
嵌入互操作類型 改成True后,生成時可能現有調用Excel的代碼會報錯,引用Microsoft.CSharp 命名空間,可以解決此問題。
3.引用Excel 14.0.0 DLL組件方法,vs2012 右鍵添加引用->程序集->擴展->Microsoft.Office.Interop.Excel
Excel.dll http://files.cnblogs.com/files/ichk/Microsoft.Office.Interop.Excel.rar
其他方法:
1.使用NPOI.DLL開源組件,可以不安裝Office軟件,進行讀寫Excel文件。
NPIO.dll http://files.cnblogs.com/files/ichk/NPOI.rar
調用方法如下:
導出代碼:
/// <summary>
/// DataTable導出到Excel的MemoryStream Export()
/// </summary>
/// <param name="dtSource">DataTable數據源</param>
/// <param name="strHeaderText">Excel表頭文本(例如:車輛列表)</param>
public static MemoryStream Export(DataTable dtSource, string strHeaderText)
{
HSSFWorkbook workbook = new HSSFWorkbook();
ISheet sheet = workbook.CreateSheet();
#region 右擊文件 屬性信息
{
DocumentSummaryInformation dsi = PropertySetFactory.CreateDocumentSummaryInformation();
dsi.Company = "NPOI";
workbook.DocumentSummaryInformation = dsi;
SummaryInformation si = PropertySetFactory.CreateSummaryInformation();
si.Author = "文件作者信息"; //填加xls文件作者信息
si.ApplicationName = "創建程序信息"; //填加xls文件創建程序信息
si.LastAuthor = "最后保存者信息"; //填加xls文件最后保存者信息
si.Comments = "作者信息"; //填加xls文件作者信息
si.Title = "標題信息"; //填加xls文件標題信息
si.Subject = "主題信息";//填加文件主題信息
si.CreateDateTime = System.DateTime.Now;
workbook.SummaryInformation = si;
}
#endregion
ICellStyle dateStyle = workbook.CreateCellStyle();
IDataFormat format = workbook.CreateDataFormat();
dateStyle.DataFormat = format.GetFormat("yyyy-mm-dd");
//取得列寬
int[] arrColWidth = new int[dtSource.Columns.Count];
foreach (DataColumn item in dtSource.Columns)
{
arrColWidth[item.Ordinal] = Encoding.GetEncoding(936).GetBytes(item.ColumnName.ToString()).Length;
}
for (int i = 0; i < dtSource.Rows.Count; i++)
{
for (int j = 0; j < dtSource.Columns.Count; j++)
{
int intTemp = Encoding.GetEncoding(936).GetBytes(dtSource.Rows[i][j].ToString()).Length;
if (intTemp > arrColWidth[j])
{
arrColWidth[j] = intTemp;
}
}
}
int rowIndex = 0;
foreach (DataRow row in dtSource.Rows)
{
#region 新建表,填充表頭,填充列頭,樣式
if (rowIndex == 65535 || rowIndex == 0)
{
if (rowIndex != 0)
{
sheet = workbook.CreateSheet();
}
#region 表頭及樣式
{
IRow headerRow = sheet.CreateRow(0);
headerRow.HeightInPoints = 25;
headerRow.CreateCell(0).SetCellValue(strHeaderText);
ICellStyle headStyle = workbook.CreateCellStyle();
headStyle.Alignment = HorizontalAlignment.CENTER;
IFont font = workbook.CreateFont();
font.FontHeightInPoints = 20;
font.Boldweight = 700;
headStyle.SetFont(font);
headerRow.GetCell(0).CellStyle = headStyle;
sheet.AddMergedRegion(new NPOI.SS.Util.CellRangeAddress(0, 0, 0, dtSource.Columns.Count - 1));
}
#endregion
#region 列頭及樣式
{
IRow headerRow = sheet.CreateRow(1);
ICellStyle headStyle = workbook.CreateCellStyle();
headStyle.Alignment = HorizontalAlignment.CENTER;
IFont font = workbook.CreateFont();
font.FontHeightInPoints = 10;
font.Boldweight = 700;
headStyle.SetFont(font);
foreach (DataColumn column in dtSource.Columns)
{
headerRow.CreateCell(column.Ordinal).SetCellValue(column.ColumnName);
headerRow.GetCell(column.Ordinal).CellStyle = headStyle;
//設置列寬
sheet.SetColumnWidth(column.Ordinal, (arrColWidth[column.Ordinal] + 1) * 256);
}
}
#endregion
rowIndex = 2;
}
#endregion
#region 填充內容
IRow dataRow = sheet.CreateRow(rowIndex);
foreach (DataColumn column in dtSource.Columns)
{
ICell newCell = dataRow.CreateCell(column.Ordinal);
string drValue = row[column].ToString();
switch (column.DataType.ToString())
{
case "System.String"://字符串類型
newCell.SetCellValue(drValue);
break;
case "System.DateTime"://日期類型
System.DateTime dateV;
System.DateTime.TryParse(drValue, out dateV);
newCell.SetCellValue(dateV);
newCell.CellStyle = dateStyle;//格式化顯示
break;
case "System.Boolean"://布爾型
bool boolV = false;
bool.TryParse(drValue, out boolV);
newCell.SetCellValue(boolV);
break;
case "System.Int16"://整型
case "System.Int32":
case "System.Int64":
case "System.Byte":
int intV = 0;
int.TryParse(drValue, out intV);
newCell.SetCellValue(intV);
break;
case "System.Decimal"://浮點型
case "System.Double":
double doubV = 0;
double.TryParse(drValue, out doubV);
newCell.SetCellValue(doubV);
break;
case "System.DBNull"://空值處理
newCell.SetCellValue("");
break;
default:
newCell.SetCellValue("");
break;
}
}
#endregion
rowIndex++;
}
using (MemoryStream ms = new MemoryStream())
{
workbook.Write(ms);
ms.Flush();
ms.Position = 0;
sheet.Dispose();
return ms;
}
}
導入代碼:
/// <summary> /// 讀取excel ,默認第一行為標頭 /// </summary> /// <param name="strFileName">excel文檔路徑</param> /// <returns></returns> public static DataTable Import(string strFileName) { DataTable dt = new DataTable(); HSSFWorkbook hssfworkbook; using (FileStream file = new FileStream(strFileName, FileMode.Open, FileAccess.Read)) { hssfworkbook = new HSSFWorkbook(file); } ISheet sheet = hssfworkbook.GetSheetAt(0); System.Collections.IEnumerator rows = sheet.GetRowEnumerator(); IRow headerRow = sheet.GetRow(0); int cellCount = headerRow.LastCellNum; for (int j = 0; j < cellCount; j++) { ICell cell = headerRow.GetCell(j); dt.Columns.Add(cell.ToString()); } for (int i = (sheet.FirstRowNum + 1); i <= sheet.LastRowNum; i++) { IRow row = sheet.GetRow(i); DataRow dataRow = dt.NewRow(); for (int j = row.FirstCellNum; j < cellCount; j++) { if (row.GetCell(j) != null) dataRow[j] = row.GetCell(j).ToString(); } dt.Rows.Add(dataRow); } return dt; }
問題:最近在項目中遇到,不同客戶機安裝不同Office版本,在導出Excel時,發生錯誤。
找不到Excel Com組件,錯誤信息如下。
未能加載文件或程序集“Microsoft.Office.Interop.Excel, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c”或它的某一個依賴項。系統找不到指定的文件。
解決方法:
1.引用高版本的的Excel.dll組件,最新版本14.0.0 防止客戶安裝高版本如Office不能導出。
(DLL組件可以兼容低版本,不能兼容高版本)
2.右鍵DLL屬性,將引用的Excel.dll組件,嵌入互操作類型為True,特定版本=false .這一步非常關鍵。
嵌入互操作類型 改成True后,生成時可能現有調用Excel的代碼會報錯,引用Microsoft.CSharp 命名空間,可以解決此問題。
3.引用Excel 14.0.0 DLL組件方法,vs2012 右鍵添加引用->程序集->擴展->Microsoft.Office.Interop.Excel
Excel.dll http://files.cnblogs.com/files/ichk/Microsoft.Office.Interop.Excel.rar
其他方法:
1.使用NPOI.DLL開源組件,可以不安裝Office軟件,進行讀寫Excel文件。
NPIO.dll http://files.cnblogs.com/files/ichk/NPOI.rar
調用方法如下:
導出代碼:
導入代碼:
2.使用C#發射方式調用Excel進行,不需要引用Excel.dll組件。此種方法不建議,太麻煩,也需要安裝Office。
調用方法如下:
