当前位置:   article > 正文

【Unity学习】使用Json文件在本地路径长久储存ScriptableObject数据_unity中scriptableobject中文件保存为json

unity中scriptableobject中文件保存为json

代码如下,其中形参data一般为ScriptableObject数据:

using System.IO;
using System.Text;
using UnityEngine;

public static class DataManager
{

    public static void Save(object data, string url)
    {
        var jsonData = JsonUtility.ToJson(data, true);
        StreamWriter streamWriter = null;
        try
        {
            if (!File.Exists(url))
            {
                File.Create(url).Dispose();
            }
            if (File.Exists(url))
            {
                streamWriter = new StreamWriter(url);
                streamWriter.WriteLine(jsonData);
                streamWriter.Close();
                streamWriter.Dispose();
            }
        }
        catch (System.Exception e)
        {
            Debug.LogError(e);
        }
    }

    public static void Load(Object data, string url)
    {
        if (!File.Exists(url))
        {
            File.Create(url).Dispose();
        }
        Encoding encoding = Encoding.GetEncoding("utf-8");
        StreamReader streamReader = new StreamReader(url, encoding);
        string str = streamReader.ReadToEnd();
        JsonUtility.FromJsonOverwrite(str, data);
        streamReader.Close();
        streamReader.Dispose();
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/112481
推荐阅读
相关标签
  

闽ICP备14008679号