gpt4 book ai didi

c# - 将JObject转换为匿名类型

转载 作者:行者123 更新时间:2023-12-03 02:33:04 26 4
gpt4 key购买 nike

我有一个JObject,并且想要将该JObject格式化为Object。我的JSON搅拌是

{"Prop1":"Prop1Value","Prop2":1,"Prop3":"Prop3Value","dtProp":"2019-12-30T09:59:48"}

我希望将此JSON字符串格式化为
{
Prop1 = "Prop1Value",
Prop2 = 1,
Prop3 = "Prop3Value",
dtProp = "2019-12-30T09:59:48"
}

我们应该怎么做?我的JSON字符串不是强类型的对象。但我想将其转换为这种格式。我的Json字符串不会每次都相同。每次都会改变。我可以针对这种情况动态创建对象吗?

最佳答案

请注意,JSON的格式不是=,而是:。使用=对其进行格式化后,您将无法对其进行反序列化。

你可以这样做,

  string newFormatted = JsonConvert.SerializeObject(JObject.Parse(json), Formatting.Indented).Replace(":", "=");
Console.WriteLine(newFormatted);

输出
{
"Prop1"= "Prop1Value",
"Prop2"= 1,
"Prop3"= "Prop3Value",
"dtProp"= "2019-12-30T09=59=48"
}

打印不带键的引号

如果您有兴趣打印不带引号的键,则可以运行以下方法。此方法中断每一行并从每个键中删除引号。
    string str = JsonConvert.SerializeObject(JObject.Parse(json), Formatting.Indented);
string newStr = string.Empty;
str.Split(Environment.NewLine).ToList().ForEach(line => newStr += string.Join("=", line.Split(':').Select((x, index) => index % 2 == 0 ? x.Replace(@"""", "") : x)) + Environment.NewLine);

输出
{
Prop1= "Prop1Value"
Prop2= 1
Prop3= "Prop3Value"
dtProp= "2019-12-30T09=59=48"
}

关于c# - 将JObject转换为匿名类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59525848/

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