在.Net中将Url编码的表单数据转换为JSON的一些选项是什么

时间:2013-05-14 20:29:07

标签: c# .net json .net-4.5 html-form

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

示例:

网址编码表单数据:

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解决方案。

2 个答案:

答案 0 :(得分:21)

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

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

让我知道它是否适合你。

答案 1 :(得分:9)

.NET Framework 4.5包含将url编码的表单数据转换为JSON所需的一切。为此,您必须在C#项目中添加对名称空间System.Web.Extension的引用。之后,您可以使用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"
}

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

来源:How do I convert a querystring to a json string?