沒有Excel的介面
存取excel(.xlsx)數據
挑戰:
>嘗試使用OleDbDataAdapter
>和配置為Microsoft.Jet.OLEDB.4.0
>和Extended Properties=Excel 8.0
的連接字串從Excel(.xlsx)檔案存取資料通常會導致「外部表不在期望格式」錯誤。當Excel檔案未開啟時,通常會發生這種情況。
解:
>無縫從.xlsx檔案中無縫讀取數據,而無需在Excel中預先打開它,請按以下方式調整連接字串參數:
<code class="language-csharp">public static string filePath = @"C:\src\RedirectApplication\RedirectApplication1s.xlsx"; public static string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + filePath + ";Extended Properties=Excel 12.0;";</code>
這是關鍵修改的崩潰:
Microsoft.ACE.OLEDB.12.0
Excel 12.0
以上是如何讀取 Excel (.xlsx) 檔案而不在 Excel 中開啟它們?的詳細內容。更多資訊請關注PHP中文網其他相關文章!