gpt4 book ai didi

c# - 如何在我的资源文件夹中使用 json?

转载 作者:行者123 更新时间:2023-11-29 19:32:19 24 4
gpt4 key购买 nike

我将 Visual Studio 与 Xamarin 结合使用,并希望在我的资源文件夹中存储一个 json 文件。

我需要获取路径,反序列化它,然后异步加载数据。我环顾四周,但找不到任何有用的例子。这可能吗?

最佳答案

将文件放在“Assets”文件夹下,使用以下代码访问:

// to read from assets folder 
string content;
AssetManager assets = this.Assets;

using (StreamReader sr = new StreamReader (assets.Open ("file.json")))
{
content = sr.ReadToEnd ();
}

// JSON is now in "content"

然后您可以将字符串传递给 JSON 解析器。您可以在 Xamarin documentation 中找到有关此主题的更多信息(=> 读取 Assets )。

关于c# - 如何在我的资源文件夹中使用 json?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39741105/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com