C \ # Excel 가 져 오기 내 보 내기, 서로 다른 버 전의 Office 지원

14715 단어 C#Excel
http://www.daxueit.com/article/13657.html
문제: 최근 프로젝트 에서 서로 다른 클 라 이언 트 가 서로 다른 Office 버 전 을 설치 하고 엑셀 을 내 보 낼 때 오류 가 발생 했 습 니 다.
Excel Com 구성 요 소 를 찾 을 수 없습니다. 오류 정 보 는 다음 과 같 습 니 다.
파일 이나 프로그램 집합 'Microsoft. Office. Interop. Excel, Version = 12.0.0, Culture = neutral, PublicKeyToken = 71e9bce111e9429c' 또는 그 의존 항목 을 불 러 올 수 없습니다.시스템 에서 지정 한 파일 을 찾 을 수 없습니다.
해결 방법:
1. 높 은 버 전의 Excel. dll 구성 요 소 를 참조 하고 최신 버 전 14.0.0 은 Office 와 같은 높 은 버 전 을 설치 하 는 것 을 방지 합 니 다.
(DLL 구성 요 소 는 낮은 버 전 을 호 환 할 수 있 고 높 은 버 전 을 호 환 할 수 없습니다)
2. DLL 속성 을 오른쪽 단추 로 누 르 면 인 용 된 Excel. dll 구성 요 소 를 True, 특정 버 전 = false 로 삽입 합 니 다. 이 단 계 는 매우 중요 합 니 다.
상호 작용 형식 을 True 로 변경 하면 생 성 시 기 존 에 Excel 을 호출 하 는 코드 가 잘못 되 었 을 수 있 습 니 다. Microsoft. Sharp 네 임 스페이스 를 참조 하면 이 문 제 를 해결 할 수 있 습 니 다.
3. Excel 14.0.0 DLL 구성 요소 방법 참조, vs 2012 오른쪽 단 추 를 누 르 면 참조 추가 - > 프로그램 집합 - > 확장 - > 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
호출 방법 은 다음 과 같 습 니 다.
코드 내 보 내기:
/// 
 /// DataTable   Excel MemoryStream Export()
 /// 
 /// DataTable   
 /// Excel    (  :    )
 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;
     }
 }

코드 가 져 오기:
/// 
///   excel ,        
/// 
/// excel    
/// 
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;
}

2. C \ # 발사 방식 으로 Excel 을 호출 하여 진행 합 니 다. Excel. dll 구성 요 소 를 참조 할 필요 가 없습니다.이 방법 은 권장 하지 않 습 니 다. 너무 번 거 롭 고 Office 도 설치 해 야 합 니 다.
호출 방법 은 다음 과 같 습 니 다.
   private void Export2Excel(DataGridView datagridview, bool captions)
        {
            object objApp_Late;
            object objBook_Late;
            object objBooks_Late;
            object objSheets_Late;
            object objSheet_Late;
            object objRange_Late;
            object[] Parameters;
 
            string[] headers = new string[datagridview.DisplayedColumnCount(true)];
            string[] columns = new string[datagridview.DisplayedColumnCount(true)];
            string[] colName = new string[datagridview.DisplayedColumnCount(true)];
 
            int i = 0;
            int c = 0;
            int m = 0;
 
            for (c = 0; c < datagridview.Columns.Count; c++)
            {
                for (int j = 0; j < datagridview.Columns.Count; j++)
                {
                    DataGridViewColumn tmpcol = datagridview.Columns[j];
                    if (tmpcol.DisplayIndex == c)
                    {
                        if (tmpcol.Visible) //           tag=0
                        {
                            headers[c - m] = tmpcol.HeaderText;
                            i = c - m + 65;
                            columns[c - m] = Convert.ToString((char)i);
                            colName[c - m] = tmpcol.Name;
                        }
                        else
                        {
                            m++;
                        }
                        break;
                    }
                }
            }
 
            try
            {
                // Get the class type and instantiate Excel.
                Type objClassType;
                objClassType = Type.GetTypeFromProgID("Excel.Application");
                objApp_Late = Activator.CreateInstance(objClassType);
                //Get the workbooks collection.
                objBooks_Late = objApp_Late.GetType().InvokeMember("Workbooks", BindingFlags.GetProperty, null, objApp_Late, null);
                //Add a new workbook.
                objBook_Late = objBooks_Late.GetType().InvokeMember("Add", BindingFlags.InvokeMethod, null, objBooks_Late, null);
                //Get the worksheets collection.
                objSheets_Late = objBook_Late.GetType().InvokeMember("Worksheets", BindingFlags.GetProperty, null, objBook_Late, null);
                //Get the first worksheet.
                Parameters = new Object[1];
                Parameters[0] = 1;
                objSheet_Late = objSheets_Late.GetType().InvokeMember("Item", BindingFlags.GetProperty, null, objSheets_Late, Parameters);
 
                if (captions)
                {
                    // Create the headers in the first row of the sheet
                    for (c = 0; c < datagridview.DisplayedColumnCount(true); c++)
                    {
                        //Get a range object that contains cell.
                        Parameters = new Object[2];
                        Parameters[0] = columns[c] + "1";
                        Parameters[1] = Missing.Value;
                        objRange_Late = objSheet_Late.GetType().InvokeMember("Range", BindingFlags.GetProperty, null, objSheet_Late, Parameters);
                        //Write Headers in cell.
                        Parameters = new Object[1];
                        Parameters[0] = headers[c];
                        objRange_Late.GetType().InvokeMember("Value", BindingFlags.SetProperty, null, objRange_Late, Parameters);
                    }
                }
 
                // Now add the data from the grid to the sheet starting in row 2
                for (i = 0; i < datagridview.RowCount; i++)
                {
                    c = 0;
                    foreach (string txtCol in colName)
                    {
                        DataGridViewColumn col = datagridview.Columns[txtCol];
                        if (col.Visible)
                        {
                            //Get a range object that contains cell.
                            Parameters = new Object[2];
                            Parameters[0] = columns[c] + Convert.ToString(i + 2);
                            Parameters[1] = Missing.Value;
                            objRange_Late = objSheet_Late.GetType().InvokeMember("Range", BindingFlags.GetProperty, null, objSheet_Late, Parameters);
                            //Write Headers in cell.
                            Parameters = new Object[1];
                            //Parameters[0] = datagridview.Rows[i].Cells[headers[c]].Value.ToString();
                            Parameters[0] = datagridview.Rows[i].Cells[col.Name].Value.ToString();
                            objRange_Late.GetType().InvokeMember("Value", BindingFlags.SetProperty, null, objRange_Late, Parameters);
                            c++;
                        }
 
                    }
                }
 
                //Return control of Excel to the user.
                Parameters = new Object[1];
                Parameters[0] = true;
                objApp_Late.GetType().InvokeMember("Visible", BindingFlags.SetProperty,
                null, objApp_Late, Parameters);
                objApp_Late.GetType().InvokeMember("UserControl", BindingFlags.SetProperty,
                null, objApp_Late, Parameters);
            }
            catch (Exception theException)
            {
                String errorMessage;
                errorMessage = "Error: ";
                errorMessage = String.Concat(errorMessage, theException.Message);
                errorMessage = String.Concat(errorMessage, " Line: ");
                errorMessage = String.Concat(errorMessage, theException.Source);
 
                MessageBox.Show(errorMessage, "Error");
            }
        }

도 출
System.Type ExcelType = System.Type.GetTypeFromProgID("Excel.Application");
Microsoft.Office.Interop.Excel.Application obj = Activator.CreateInstance(ExcelType) as Microsoft.Office.Interop.Excel.Application;

좋은 웹페이지 즐겨찾기