21

我有一个 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" }]
}

问题:

有没有能够做到这一点的免费工具?我自己找不到任何东西,如果它们存在,我宁愿消耗它们而不是自己写一个,但如果涉及到那个,我会的。

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

4

2 回答 2

25

我编写了一个用于解析查询字符串和表单数据的实用程序类。可在以下位置获得:

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);

请让我知道这对你有没有用。

于 2013-05-21T13:48:39.220 回答
12

.NET Framework 4.5 包含将 url 编码的表单数据转换为 JSON 所需的一切。为此,您必须System.Web.Extension在 C# 项目中添加对命名空间的引用。之后,您可以使用JavaScriptSerializer为您提供进行转换所需的一切的类。

编码

using System.Web;
using System.Web.Script.Serialization;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var dict = HttpUtility.ParseQueryString("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");
            var json = new JavaScriptSerializer().Serialize(
                                                     dict.Keys.Cast<string>()
                                                         .ToDictionary(k => k, k => dict[k]));

            Console.WriteLine(json);
            Console.ReadLine();
        }
    }
}

输出

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

注意:输出不包含换行符或任何格式

资料来源:如何将查询字符串转换为 json 字符串?

于 2013-05-23T18:03:38.193 回答