C#讀取Excel時報錯:External table is not in the expected format.

來源:互聯網
上載者:User

在上一篇日誌《用C#讀取Excel返回DataSet》中,提到了用C#讀取Excel的方法,可以發現,用這種方法讀取excel2003完全沒有問題,可是,當我們讀取Excel2007時,就會發現visual studio報錯:External table is not in the expected format.

其實,這個錯誤是由於Excel版本的連接字串引起的錯誤,

在上一篇日誌提到的方法中,excel的連接字串如下:

public static string connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\WorkSpace\MyDocument\Samples2.xlsx;Extended Properties=""Excel 8.0;HDR=YES;""";

用這種方法讀取Excel2007時候,必須先在當前電腦上手動開啟Excel擺放在那裡,然後才能運行程式,顯然這不會是我們的需求。

 

要解決這個問題更改連接字串的OLEDB和Extended Properties版本即可,如下:

public static string connectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=D:\WorkSpace\MyDocument\Samples.xlsx;Extended Properties=""Excel 12.0;HDR=YES;""";

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.