unity json序列化和反序列化

Posted G月月鸟

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity json序列化和反序列化相关的知识,希望对你有一定的参考价值。

技术图片
using Newtonsoft.Json;
using System.Collections.Generic;
using UnityEngine;

public class JsonDe : MonoBehaviour
{
    public class Produc
    {
        public string name = "sdf";
        public int a = 1;
        public bool b = true;
        public float c = 2.1f;
        public Dictionary<string, string> dic = new Dictionary<string, string> { { "sdfsd", "654" }, { "dfsdf", "354" } };
        public string[] ss = { "sdfsdf", "3213", "sdfsdf" };
        public int[,] ves = new int[1, 2] { { 1, 2 } };

    }
    
    void Start()
    {
        Produc produc = new Produc();

        string json = JsonConvert.SerializeObject(produc);

        Debug.Log(json);

        Produc m = JsonConvert.DeserializeObject<Produc>(json);

        Debug.Log(m.ves[0, 0]);

    }

   
}
View Code

需要用到Newtonsoft.Json.dll, 放到Plugins文件夹下面 

csdn下载链接  https://download.csdn.net/download/gp1320099322/11932181

以上是关于unity json序列化和反序列化的主要内容,如果未能解决你的问题,请参考以下文章

unity含枚举类型json数据的序列化和反序列化

unity含枚举类型json数据的序列化和反序列化

unity C#中使用Newtonsoft.Json进行字符串的序列化和反序列化简易教程

unity C#中使用Newtonsoft.Json进行字符串的序列化和反序列化简易教程

unity C#中使用Newtonsoft.Json进行字符串的序列化和反序列化简易教程

JSON.NET使用简单说明