尝试读取 .xlsm 文件时出错

发布于 2024-11-06 12:03:27 字数 1167 浏览 3 评论 0原文

现在我有扩展名为.xlsm的excel文件,我需要使用C#进行读写。 我尝试使用 Microsoft.Office.Interop.Excel,

Microsoft.Office.Interop.Excel.Application ObjExcel = new Microsoft.Office.Interop.Excel.Application();
Workbook ObjWorkBook;
Worksheet ObjWorkSheet;

ObjWorkBook = ObjExcel.Workbooks.Open(excelFilename,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing);
ObjWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet) ObjWorkBook.Sheets[1];

if (ObjWorkSheet != null)
{
    Range usedRange = ObjWorkSheet.UsedRange;
    if (usedRange != null)
    {
        for (int rowIndex = 1; rowIndex < usedRange.Rows.Count; rowIndex++)
        {
            for (int colIndex = 1; colIndex < usedRange.Columns.Count; colIndex++)
            {
                string firstName = ((Microsoft.Office.Interop.Excel.Range)ObjWorkSheet.Cells[rowIndex, colIndex]).Value2.ToString();
            }
        }
    }
}

但是,在读取单元格时,我发现错误“对象引用未设置为对象的实例”。尽管我替换了另一个新的 excel 文件.xlsm,并且它读取时没有错误... 另外,我试图读取的文件有宏...

有什么解决方案吗?

提前致谢 :)

Now I have excel file of extension .xlsm, and I need to read and write using C#.
I tried to use Microsoft.Office.Interop.Excel,

Microsoft.Office.Interop.Excel.Application ObjExcel = new Microsoft.Office.Interop.Excel.Application();
Workbook ObjWorkBook;
Worksheet ObjWorkSheet;

ObjWorkBook = ObjExcel.Workbooks.Open(excelFilename,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing);
ObjWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet) ObjWorkBook.Sheets[1];

if (ObjWorkSheet != null)
{
    Range usedRange = ObjWorkSheet.UsedRange;
    if (usedRange != null)
    {
        for (int rowIndex = 1; rowIndex < usedRange.Rows.Count; rowIndex++)
        {
            for (int colIndex = 1; colIndex < usedRange.Columns.Count; colIndex++)
            {
                string firstName = ((Microsoft.Office.Interop.Excel.Range)ObjWorkSheet.Cells[rowIndex, colIndex]).Value2.ToString();
            }
        }
    }
}

however, I found error Object reference not set to an instance of an object when reading cells..although I replaced another new excel file.xlsm and it read with no errors...
Also, The file I'm trying to read has macros...

Any Solutions ?!

Thanks in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文