• 大小: 18KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-06-08
  • 语言: 其他
  • 标签: unity  C#处理json  

资源简介

从google开源项目LitJson上取出的LitJson源码。为纯cs文件。将其解压,放到你的项目中即可使用LitJson库了。例如:unity不支持json的处理,把解压的文件放到Unity3d的assets中的plugins目录下,即可在项目中using LitJson了。

资源截图

代码片段和文件信息

#region Header
/**
 * IJsonWrapper.cs
 *   Interface that represents a type capable of handling all kinds of JSON
 *   data. This is mainly used when mapping objects through JsonMapper and
 *   it‘s implemented by JsonData.
 *
 * The authors disclaim copyright to this source code. For more details see
 * the COPYING file included with this distribution.
 **/
#endregion


using System.Collections;
using System.Collections.Specialized;


namespace LitJson
{
    public enum JsonType
    {
        None

        object
        Array
        String
        Int
        Long
        Double
        Boolean
    }

    public interface IJsonWrapper : IList IOrderedDictionary
    {
        bool IsArray   { get; }
        bool IsBoolean { get; }
        bool IsDouble  { get; }
        bool IsInt     { get; }
        bool IsLong    { get; }
        bool Isobject  { get; }
        bool IsString  { get; }

        bool     GetBoolean ();
        double   GetDouble ();
        int      GetInt ();
        JsonType GetJsonType ();
        long     GetLong ();
        string   GetString ();

        void SetBoolean  (bool val);
        void SetDouble   (double val);
        void SetInt      (int val);
        void SetJsonType (JsonType type);
        void SetLong     (long val);
        void SetString   (string val);

        string ToJson ();
        void   ToJson (JsonWriter writer);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1407  2012-10-16 15:39  LitJson\IJsonWrapper.cs

     文件      26586  2012-10-16 15:39  LitJson\JsonData.cs

     文件       1487  2012-10-16 15:39  LitJson\JsonException.cs

     文件      30861  2012-10-16 15:39  LitJson\JsonMapper.cs

     文件      13543  2012-10-16 15:39  LitJson\JsonReader.cs

     文件      11650  2012-10-16 15:39  LitJson\JsonWriter.cs

     文件      23055  2012-10-16 15:39  LitJson\Lexer.cs

     文件       3034  2012-10-16 15:39  LitJson\LitJson.csproj

     文件        781  2012-10-16 15:39  LitJson\ParserToken.cs

     目录          0  2012-10-16 15:21  LitJson

----------- ---------  ---------- -----  ----

               112404                    10


评论

共有 条评论