从Excel 2010中使用的Microsoft.Office.Interop.Excel读取数据数据、Excel、Microsoft、Interop

由网友(余欢)分享简介:我不能够在Excel中读取数据。这里是code我使用的:I am not able to read data in Excel. Here is the code I am using:using Excel = Microsoft.Office.Interop.Excel;Excel.Application xl...

我不能够在Excel中读取数据。这里是code我使用的:

I am not able to read data in Excel. Here is the code I am using:

using Excel = Microsoft.Office.Interop.Excel;

Excel.Application xlApp = new Excel.Application();
Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(@"Book1.xlsx", 0, true, 5, "", "", true, Excel.XlPlatform.xlWindows, "t", false, false, 0, true, 1, 0);
Excel._Worksheet xlWorksheet = (Excel._Worksheet)xlWorkbook.Sheets[1];
Excel.Range xlRange = xlWorksheet.UsedRange;

int rowCount = xlRange.Rows.Count;
int colCount = xlRange.Columns.Count;

for (int i = 1; i <= rowCount; i++)
{
    for (int j = 1; j <= colCount; j++)
    {
        MessageBox.Show(xlWorksheet.Cells[i,j].ToString());
    }
}

我得到了一些关于系统.__ ComObject一个消息框,,而不是一个值。 我该如何解决这个问题?

I get a message box that says something about System.__ComObject instead of a value. How can I fix this?

推荐答案

我发现上面的解决方案,这里是code:

I found the solution for above, here is the code:

string temp = (string)(xlRange.Cells[i, j] as Excel.Range).Value2;
MessageBox.Show(temp);
阅读全文

相关推荐

最新文章