gpt4 book ai didi

c# - 在 .Net 中将 Url 编码的表单数据转换为 JSON 有哪些选项

转载 作者:IT王子 更新时间:2023-10-29 04:42:33 26 4
gpt4 key购买 nike

我有一个 Web 请求正在发送格式为 application/x-www-form-urlencoded 的服务器数据。我想将其转换为 application/json

示例:

URL 编码的表单数据:

Property1=A&Property2=B&Property3%5B0%5D%5BSubProperty1%5D=a&Property3%5B0%5D%5BSubProperty2%5D=b&Property3%5B1%5D%5BSubProperty1%5D=c&Property3%5B1%5D%5BSubProperty2%5D=d

漂亮的版本:

Property1=A
Property2=B
Property3[0][SubProperty1]=a
Property3[0][SubProperty2]=b
Property3[1][SubProperty1]=c
Property3[1][SubProperty2]=d

以上数据需要转换为如下JSON数据:

{
Property1: "A",
Property2: "B",
Property3: [
{ SubProperty1: "a", SubProperty2: "b" },
{ SubProperty1: "c", SubProperty2: "d" }]
}

问题:

有没有免费的工具可以做到这一点?我自己没能找到任何东西,如果它们存在,我宁愿使用它们也不愿自己写一个,但如果涉及到这一点,我会的。

首选 C#/.Net 解决方案。

最佳答案

我编写了一个用于解析查询字符串和表单数据的实用程序类。它位于:

https://gist.github.com/peteroupc/5619864

例子:

// Example query string from the question
String test="Property1=A&Property2=B&Property3%5B0%5D%5BSubProperty1%5D=a&Property3%5B0%5D%5BSubProperty2%5D=b&Property3%5B1%5D%5BSubProperty1%5D=c&Property3%5B1%5D%5BSubProperty2%5D=d";
// Convert the query string to a JSON-friendly dictionary
var o=QueryStringHelper.QueryStringToDict(test);
// Convert the dictionary to a JSON string using the JSON.NET
// library <http://json.codeplex.com/>
var json=JsonConvert.SerializeObject(o);
// Output the JSON string to the console
Console.WriteLine(json);

让我知道它是否适合您。

关于c# - 在 .Net 中将 Url 编码的表单数据转换为 JSON 有哪些选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16552276/

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