我有JSON文件存儲在我的D驅動器。我在web配置文件中提到過相同的內容。請參考下面的代碼如何從webconfig文件中使用密鑰獲取文件路徑
<appSettings>
<add key="inputFilePath" value="D:\products.json"/>
</appSettings>
當我嘗試使用下面的代碼獲取文件路徑時,我得到空值。
string filepath = ConfigurationManager.AppSettings["inputFilePath"];
請任何一個可以幫助我在此
我已經嘗試使用上面的代碼,但我得到一個'System.NullReferenceException'類型的異常。 –
@anithalm你能夠獲得stringpath還是爲null值? – Webruster
@anithalm您的實施必須是不正確的。這絕對適用於從配置文件中檢索關鍵值。 – Webruster