本文介绍了excel文件有对象引用错误;分号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我正在使用Oledb阅读excel。当excel文件的名称有时,我得到的对象引用未设置为实例错误; (分号)。 请帮帮我.. 我的代码 字符串 OledbCon = @ Provider = Microsoft.ACE.OLEDB.12.0; + 数据源= + FileName.Trim()+ ; + 扩展属性= Excel 12.0;; OleCon = new OleDbConnection(OledbCon); Fiel名称:somefiley; .xlsx。 谢谢, prasad 解决方案 Hi,I am reading the excel using Oledb. I am getting object reference not set to an instance error when the name of excel file has ; (semicolon).Please help me..My codestring OledbCon = @"Provider=Microsoft.ACE.OLEDB.12.0;" + "Data Source=" + FileName.Trim() + ";" + "Extended Properties=Excel 12.0;"; OleCon = new OleDbConnection(OledbCon);Fiel Name : somefiley;.xlsx.Thanks,prasad 解决方案 这篇关于excel文件有对象引用错误;分号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-19 09:54