json-utils

Json工具类, 包含Gson、FastJson、Jackson三个库的工具类,其中Jackson支持Scala版本

License

License

Categories

Categories

JSON Data
GroupId

GroupId

com.github.duanxinyuan
ArtifactId

ArtifactId

json-utils
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

pom
Description

Description

json-utils
Json工具类, 包含Gson、FastJson、Jackson三个库的工具类,其中Jackson支持Scala版本
Project URL

Project URL

https://github.com/duanxinyuan/json-utils
Source Code Management

Source Code Management

https://github.com/duanxinyuan/json-utils

Download json-utils

Filename Size
json-utils-1.1.0.pom 9 KB
Browse

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.duanxinyuan/json-utils/ -->
<dependency>
    <groupId>com.github.duanxinyuan</groupId>
    <artifactId>json-utils</artifactId>
    <version>1.1.0</version>
    <type>pom</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.duanxinyuan/json-utils/
implementation 'com.github.duanxinyuan:json-utils:1.1.0'
// https://jarcasting.com/artifacts/com.github.duanxinyuan/json-utils/
implementation ("com.github.duanxinyuan:json-utils:1.1.0")
'com.github.duanxinyuan:json-utils:pom:1.1.0'
<dependency org="com.github.duanxinyuan" name="json-utils" rev="1.1.0">
  <artifact name="json-utils" type="pom" />
</dependency>
@Grapes(
@Grab(group='com.github.duanxinyuan', module='json-utils', version='1.1.0')
)
libraryDependencies += "com.github.duanxinyuan" % "json-utils" % "1.1.0"
[com.github.duanxinyuan/json-utils "1.1.0"]

Dependencies

compile (2)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.30
org.projectlombok : lombok jar 1.18.12

test (4)

Group / Artifact Type Version
junit : junit jar 4.13.1
org.apache.logging.log4j : log4j-api jar 2.14.0
org.apache.logging.log4j : log4j-core jar 2.14.0
org.apache.logging.log4j : log4j-slf4j-impl jar 2.14.0

Project Modules

  • exception-formative
  • json-fastjson
  • json-gson
  • json-jackson
  • json-jackson-extend
  • json-jackson-scala

json-utils

Json工具类, 包含Gson、FastJson、Jackson三个库的工具类,其中Jackson支持Scala版本

Maven依赖:

<dependencies>
<dependency>
    <groupId>com.github.duanxinyuan</groupId>
    <artifactId>json-fastjson</artifactId>
    <version>1.1.0</version>
</dependency>

<dependency>
    <groupId>com.github.duanxinyuan</groupId>
    <artifactId>json-gson</artifactId>
     <version>1.1.0</version>
</dependency>

<dependency>
    <groupId>com.github.duanxinyuan</groupId>
    <artifactId>json-jackson</artifactId>
    <version>1.1.0</version>
</dependency>

<dependency>
    <groupId>com.github.duanxinyuan</groupId>
    <artifactId>json-jackson-extend</artifactId>
    <version>1.1.0</version>
</dependency>

<dependency>
    <groupId>com.github.duanxinyuan</groupId>
    <artifactId>json-jackson-scala</artifactId>
    <version>1.1.0</version>
</dependency>
</dependencies>

Gson使用示例:

     //JSON反序列化
      Test test = GsonUtil.from(string, Test.class);
      
      //宽松JSON反序列化
      Test test = GsonUtil.fromLenient(string, Test.class);
      
      //JSON序列化
      String testStr = GsonUtil.to(test);
    
      //JSON序列化为文件
      GsonUtil.toFile(path, test);
      
      //JSON格式化
      String testStr = GsonUtil.format(test);
    
      //获取JSON中的单个字符串
      String name = GsonUtil.getAsString(string,"name");

Fastjson使用示例:

     //JSON反序列化
      Test test = FastjsonUtil.from(string, Test.class);
      
      //JSON格式化
      String testStr = FastjsonUtil.format(test);
    
      //JSON序列化
      String testStr = FastjsonUtil.to(test);
    
      //获取JSON中的单个字符串
      String name = FastjsonUtil.getAsString(string,"name");

Jackson使用示例:

    
    //JSON反序列化
    Test test = JacksonUtil.from(string, Test.class);
    
    //JSON格式化
    String testStr = JacksonUtil.format(test);
    
    //JSON序列化
    String testStr = JacksonUtil.to(test);
    
    //JSON序列化为文件
    String testStr = JacksonUtil.toFile(path, test);
    
    //获取JSON中的单个字符串
    String name = JacksonUtil.getAsString(string,"name");
    

Jackson-Extend使用示例:

    //反序列化Yaml
    Test test = JacksonExtendUtil.fromYamlResource(string, Test.class);
    Test test = JacksonExtendUtil.fromYamlFile(string, Test.class);
    
    //序列化为Yaml
    JacksonExtendUtil.toYaml(test);
  
    //序列化为Yaml文件
    JacksonExtendUtil.toYamlFile(path, test);
    
    //反序列化Properties
    Test test = JacksonExtendUtil.fromPropResource(string, Test.class);
        
    //序列化为Properties
    JacksonExtendUtil.toProp(test);
  
    //序列化为Properties文件
    JacksonExtendUtil.toPropFile(path, test);

    //反序列化Csv
    Test test = JacksonExtendUtil.fromCsvResource(string, Test.class);
    Test test = JacksonExtendUtil.fromCsvFile(string, Test.class);
          
    //序列化为Csv
    JacksonExtendUtil.toCsv(test);
  
    //序列化为Csv文件
    JacksonExtendUtil.toCsvFile(path, test);
    JacksonExtendUtil.toCsvFile(path, separator, test);

    //反序列化Xml
    Test test = JacksonExtendUtil.fromXmlResource(string, Test.class);
    Test test = JacksonExtendUtil.fromXmlFile(string, Test.class);
    Test test = JacksonExtendUtil.fromXml(string, Test.class);
         
    //序列化为Xml
    JacksonExtendUtil.toXml(test);
  
    //序列化为Xml文件
    JacksonExtendUtil.toXmlFile(path, test);

Versions

Version
1.1.0
1.0.0