繁体   English   中英

读取 C# 中 Excel 的单元格值,null 引用异常

[英]Reading Cell Value of Excel in C#, null reference exception

我正在尝试从 Excel 表中读取单元格值,并使用 Value 和 Value2 来查看单元格值。 它不断抛出“System.NullReferenceException:'对象引用未设置为 object 的实例。'”错误。 我无法弄清楚代码中的问题出在哪里。

我知道它读取的文件路径和 Excel 表是正确的。

public String readEDriver()
{
    int nRows = 1;
    int nCols = 1;
    String driverLoc = null;
    Excel.Application excelApp = new Excel.Application();
    if (excelApp != null)
    {
        Workbook excelWorkbook;
        excelWorkbook = excelApp.Workbooks.Open("C:\\A\\Config.xlsx", 0, true, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
        Worksheet excelWorksheet;
        excelWorksheet = (Excel.Worksheet)excelWorkbook.Worksheets[1];
        excelWorksheet.Activate();
        String eName =excelWorksheet.Name;
        if (excelWorksheet == null)
        {
            throw new Exception(string.Format("Named worksheet ({0}) not found.", excelWorksheet));
        }
        else  
        {
            var cellVal = ((Microsoft.Office.Interop.Excel.Range)excelWorksheet.Cells[nRows, nCols]).Value2;

            if (excelWorksheet.Cells[nRows,nCols]!=null)
            {
                cellVal = ((Microsoft.Office.Interop.Excel.Range)excelWorksheet.Cells[nRows, nCols]).Value2;
                driverLoc = cellVal.ToString();
            }
        }

        excelWorkbook.Close();
        excelApp.Quit();    
    }
    return driverLoc;
}

它在

var cellVal = ((Microsoft.Office.Interop.Excel.Range)excelWorksheet.Cells[nRows, nCols]).Value2;

它无法检索 Excel 范围并给出 NullReferenceException

信息:

System.NullReferenceException:Object 引用未设置为 object 的实例。
堆栈跟踪:

我尝试了您的代码,因为它看起来不错。 它适用于我的几个小编译主题:

1.- 使用“/”而不是“\”作为路径。 Windows 不喜欢那些。

2.-我必须添加 Excel.Workbook 和 Excel.Worksheet 因为编译器警告我

除此之外,它还有效。 在您的代码下方,我稍作修正。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Excel = Microsoft.Office.Interop.Excel;


namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            string aux = readEDriver();
            Console.WriteLine(aux);
            Console.ReadLine();
        }
        public static string readEDriver()
        {
            int nRows = 1;
            int nCols = 1;
            String driverLoc = null;
            Excel.Application excelApp = new Excel.Application();
            if (excelApp != null)
            {
                Excel.Workbook excelWorkbook;
                excelWorkbook = excelApp.Workbooks.Open("C:/Users/Usuario/Desktop/PruebasTxtFile.xlsx", 0, true, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
                Excel.Worksheet excelWorksheet;
                excelWorksheet = (Excel.Worksheet)excelWorkbook.Worksheets[1];
                excelWorksheet.Activate();
                String eName = excelWorksheet.Name;
                if (excelWorksheet == null)
                {
                    throw new Exception(string.Format("Named worksheet ({0}) not found.", excelWorksheet));
                }
                else
                {
                    var cellVal = ((Microsoft.Office.Interop.Excel.Range)excelWorksheet.Cells[nRows, nCols]).Value2;

                    if (excelWorksheet.Cells[nRows, nCols] != null)
                    {
                        cellVal = ((Microsoft.Office.Interop.Excel.Range)excelWorksheet.Cells[nRows, nCols]).Value2;
                        driverLoc = cellVal.ToString();
                    }
                }

                excelWorkbook.Close();
                excelApp.Quit();
            }
            return driverLoc;
        }
    }
}

希望有帮助!

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM