Jatt स्वरूपित करने के लिए आप निम्न मानक विधि का उपयोग कर सकते हैं
JsonReaderWriterFactory.CreateJsonWriter (स्ट्रीम स्ट्रीम, एन्कोडिंग एन्कोडिंग, बूल मालिकाना, बूल इंडेंट, स्ट्रिंग इंडेंट)
केवल "इंडेंट == ट्रू" सेट करें
कुछ इस तरह की कोशिश करो
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 का उपयोग करना चाहिए । उदाहरण के लिए, डबल या डेटाइम का अमान्य प्रारूप कभी-कभी उनका कारण बनते हैं।
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);
}
}
धन्यवाद!