私はXmlWriterを使用してHTTP応答で返送するためのXMLを作成しました。 JSON文字列をどのように作成しますか。私はあなたがJSON文字列を構築するために単に文字列ビルダーを使用し、それらがJSONとしてあなたの応答をフォーマットすると思いますか?
JavaScriptSerializerクラス 、check この記事 を使って便利な拡張メソッドを作ることができます。
記事からのコード:
namespace ExtensionMethods
{
public static class JSONHelper
{
public static string ToJSON(this object obj)
{
JavaScriptSerializer serializer = new JavaScriptSerializer();
return serializer.Serialize(obj);
}
public static string ToJSON(this object obj, int recursionDepth)
{
JavaScriptSerializer serializer = new JavaScriptSerializer();
serializer.RecursionLimit = recursionDepth;
return serializer.Serialize(obj);
}
}
}
使用法:
using ExtensionMethods;
...
List<Person> people = new List<Person>{
new Person{ID = 1, FirstName = "Scott", LastName = "Gurthie"},
new Person{ID = 2, FirstName = "Bill", LastName = "Gates"}
};
string jsonString = people.ToJSON();
Newtonsoft.Json を使うと、とても簡単になります。
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Price = 3.99M;
product.Sizes = new string[] { "Small", "Medium", "Large" };
string json = JsonConvert.SerializeObject(product);
ドキュメント:JSONのシリアライズとデシリアライズ
このライブラリはC#のJSONに非常に適しています。
このコードスニペットは、.NET 3.5のSystem.Runtime.Serialization.JsonのDataContractJsonSerializerを使用しています。
public static string ToJson<T>(/* this */ T value, Encoding encoding)
{
var serializer = new DataContractJsonSerializer(typeof(T));
using (var stream = new MemoryStream())
{
using (var writer = JsonReaderWriterFactory.CreateJsonWriter(stream, encoding))
{
serializer.WriteObject(writer, value);
}
return encoding.GetString(stream.ToArray());
}
}
また、私のServiceStackを試すことができます JsonSerializer それは 最速の.NET JSONシリアライザです 現時点では。 DataContracts、任意のPOCO Type、Interface、匿名型を含むLate-boundオブジェクトなどのシリアル化をサポートします。
基本的な例
var customer = new Customer { Name="Joe Bloggs", Age=31 };
var json = JsonSerializer.SerializeToString(customer);
var fromJson = JsonSerializer.DeserializeFromString<Customer>(json);
注:パフォーマンスがそれほど重要でない場合は、Microsofts JavaScriptSerializerを使用してください。他のJSONシリアライザよりも40x-100x遅くなるため、ベンチマークから除外しなければなりませんでした。 。
Json-net.aspxプロジェクトについては、 http://www.codeplex.com/json/ をご覧ください。なぜ車輪を作り直すのですか?
複雑な結果(埋め込み)が必要な場合は、独自の構造を作成してください。
class templateRequest
{
public String[] registration_ids;
public Data data;
public class Data
{
public String message;
public String tickerText;
public String contentTitle;
public Data(String message, String tickerText, string contentTitle)
{
this.message = message;
this.tickerText = tickerText;
this.contentTitle = contentTitle;
}
};
}
そして、あなたは呼び出しでJSON文字列を取得することができます
List<String> ids = new List<string>() { "id1", "id2" };
templateRequest request = new templeteRequest();
request.registration_ids = ids.ToArray();
request.data = new templateRequest.Data("Your message", "Your ticker", "Your content");
string json = new JavaScriptSerializer().Serialize(request);
結果は次のようになります。
json = "{\"registration_ids\":[\"id1\",\"id2\"],\"data\":{\"message\":\"Your message\",\"tickerText\":\"Your ticket\",\"contentTitle\":\"Your content\"}}"
それが役に立てば幸い!
2つの組み込みJSONシリアライザ( JavaScriptSerializer と を使用できない、または使用したくない場合は、DataContractJsonSerializerを使用してください。 )あなたは JsonExSerializer ライブラリを試すことができます - 私は多くのプロジェクトでそれを使っていて、とてもうまくいきます。
Newtonsoft.JsonおよびNewtonsoft.Json.Linqライブラリの単純な使用。
//Create my object
var my_jsondata = new
{
Host = @"sftp.myhost.gr",
UserName = "my_username",
Password = "my_password",
SourceDir = "/export/Zip/mypath/",
FileName = "my_file.Zip"
};
//Tranform it to Json object
string json_data = JsonConvert.SerializeObject(my_jsondata);
//Print the Json object
Console.WriteLine(json_data);
//Parse the json object
JObject json_object = JObject.Parse(json_data);
//Print the parsed Json object
Console.WriteLine((string)json_object["Host"]);
Console.WriteLine((string)json_object["UserName"]);
Console.WriteLine((string)json_object["Password"]);
Console.WriteLine((string)json_object["SourceDir"]);
Console.WriteLine((string)json_object["FileName"]);
JSONを介してWebページにデータを提供するWebサービスを作成しようとしている場合は、ASP.NET Ajaxツールキットの使用を検討してください。
http://www.asp.net/learn/ajax/tutorial-05-cs.aspx
それは自動的にWebサービスを介して提供されるあなたのオブジェクトをjsonに変換し、あなたがそれに接続するために使用できるプロキシクラスを作成します。
使用方法をエンコード
JSON配列に対する単純なオブジェクトEncodeJsObjectArray()
public class dummyObject
{
public string fake { get; set; }
public int id { get; set; }
public dummyObject()
{
fake = "dummy";
id = 5;
}
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.Append('[');
sb.Append(id);
sb.Append(',');
sb.Append(JSONEncoders.EncodeJsString(fake));
sb.Append(']');
return sb.ToString();
}
}
dummyObject[] dummys = new dummyObject[2];
dummys[0] = new dummyObject();
dummys[1] = new dummyObject();
dummys[0].fake = "mike";
dummys[0].id = 29;
string result = JSONEncoders.EncodeJsObjectArray(dummys);
結果:[[29、 "マイク"]、[5、 "ダミー"]]
かなりの用法
プリティプリントJSON配列PrettyPrintJson()文字列拡張メソッド
string input = "[14,4,[14,\"data\"],[[5,\"10.186.122.15\"],[6,\"10.186.122.16\"]]]";
string result = input.PrettyPrintJson();
結果は次のとおりです。
[
14,
4,
[
14,
"data"
],
[
[
5,
"10.186.122.15"
],
[
6,
"10.186.122.16"
]
]
]
シリアライザはまったく必要ないことがわかりました。リストとしてオブジェクトを返す場合例を使ってみましょう。
Asmxでは、渡した変数を使ってデータを取得します。
// return data
[WebMethod(CacheDuration = 180)]
public List<latlon> GetData(int id)
{
var data = from p in db.property
where p.id == id
select new latlon
{
lat = p.lat,
lon = p.lon
};
return data.ToList();
}
public class latlon
{
public string lat { get; set; }
public string lon { get; set; }
}
それからjqueryを使ってその変数に沿ってサービスにアクセスします。
// get latlon
function getlatlon(propertyid) {
var mydata;
$.ajax({
url: "getData.asmx/GetLatLon",
type: "POST",
data: "{'id': '" + propertyid + "'}",
async: false,
contentType: "application/json;",
dataType: "json",
success: function (data, textStatus, jqXHR) { //
mydata = data;
},
error: function (xmlHttpRequest, textStatus, errorThrown) {
console.log(xmlHttpRequest.responseText);
console.log(textStatus);
console.log(errorThrown);
}
});
return mydata;
}
// call the function with your data
latlondata = getlatlon(id);
そして私達は私達の応答を得ます。
{"d":[{"__type":"MapData+latlon","lat":"40.7031420","lon":"-80.6047970}]}
DataContractJSONSerializer はXMLSerializerと同じように簡単にあなたのためにすべてをします。 Webアプリケーションでこれを使用するのは簡単です。 WCFを使用している場合は、その使用を属性で指定できます。 DataContractSerializerファミリーも非常に高速です。