フォーマットされたJsonを取得するには、次の標準的な方法を使用できます
JsonReaderWriterFactory.CreateJsonWriter(ストリームストリーム、エンコーディングエンコーディング、bool ownsStream、bool indent、string 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))
{
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
{
}
}
}
catch (Exception exception)
{
Debug.WriteLine(exception.ToString());
}
}
線に注意してください
var currentCulture = Thread.CurrentThread.CurrentCulture;
Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;
....
Thread.CurrentThread.CurrentCulture = currentCulture;
一部の種類のxmlシリアライザーでは、InvariantCultureを使用して、地域設定が異なるコンピューターでの逆シリアル化中の例外を回避する必要があります。たとえば、doubleまたはDateTimeの形式が無効な場合、それらが発生することがあります。
デシリアライズ用
public TValue Revive<TValue>(string path, params object[] constructorArgs)
{
try
{
using (var stream = File.OpenRead(path))
{
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
{
}
}
}
catch
{
return (TValue) Activator.CreateInstance(typeof (TValue), constructorArgs);
}
}
ありがとう!