คุณสามารถใช้วิธีมาตรฐานต่อไปนี้ในการจัดรูปแบบ Json
JsonReaderWriterFactory.CreateJsonWriter (สตรีมสตรีม, การเข้ารหัส, เจ้าของบูลสตรีม, บูลเยื้อง, indentChars สตริง)
ตั้งค่า"indent == true" เท่านั้น
ลองอะไรเช่นนี้
public readonly DataContractJsonSerializerSettings Settings =
new DataContractJsonSerializerSettings
{ UseSimpleDictionaryFormat = true };
public void Keep<TValue>(TValue item, string path)
{
try
{
using (var stream = File.Open(path, FileMode.Create))
{
//var currentCulture = Thread.CurrentThread.CurrentCulture;
//Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
try
{
using (var writer = JsonReaderWriterFactory.CreateJsonWriter(
stream, Encoding.UTF8, true, true, " "))
{
var serializer = new DataContractJsonSerializer(type, Settings);
serializer.WriteObject(writer, item);
writer.Flush();
}
}
catch (Exception exception)
{
Debug.WriteLine(exception.ToString());
}
finally
{
//Thread.CurrentThread.CurrentCulture = currentCulture;
}
}
}
catch (Exception exception)
{
Debug.WriteLine(exception.ToString());
}
}
ใส่ใจกับสาย
var currentCulture = Thread.CurrentThread.CurrentCulture;
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
....
Thread.CurrentThread.CurrentCulture = currentCulture;
สำหรับ xml-serializers บางชนิดคุณควรใช้InvariantCultureเพื่อหลีกเลี่ยงข้อยกเว้นระหว่างการดีซีเรียลไลซ์เซชั่นในคอมพิวเตอร์ที่มีการตั้งค่าภูมิภาคที่แตกต่างกัน ตัวอย่างเช่นรูปแบบที่ไม่ถูกต้องของdoubleหรือDateTimeบางครั้งทำให้เกิด
สำหรับ deserializing
public TValue Revive<TValue>(string path, params object[] constructorArgs)
{
try
{
using (var stream = File.OpenRead(path))
{
//var currentCulture = Thread.CurrentThread.CurrentCulture;
//Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
try
{
var serializer = new DataContractJsonSerializer(type, Settings);
var item = (TValue) serializer.ReadObject(stream);
if (Equals(item, null)) throw new Exception();
return item;
}
catch (Exception exception)
{
Debug.WriteLine(exception.ToString());
return (TValue) Activator.CreateInstance(type, constructorArgs);
}
finally
{
//Thread.CurrentThread.CurrentCulture = currentCulture;
}
}
}
catch
{
return (TValue) Activator.CreateInstance(typeof (TValue), constructorArgs);
}
}
ขอบคุณ!