com.dahuatech.hutool.json.JSONSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.hutool.json;
/**
* JSON支持
* 继承此类实现实体类与JSON的相互转换
*
* @author Looly
*/
public class JSONSupport implements JSONString {
/**
* JSON String转Bean
*
* @param jsonString JSON String
*/
public void parse(String jsonString) {
new JSONObject(jsonString).toBean(this.getClass());
}
/** @return JSON对象 */
public JSONObject toJSON() {
return new JSONObject(this);
}
@Override
public String toJSONString() {
return toJSON().toString();
}
/**
* 美化的JSON(使用回车缩进显示JSON),用于打印输出debug
*
* @return 美化的JSON
*/
public String toPrettyString() {
return toJSON().toJSONString(4);
}
@Override
public String toString() {
return toJSONString();
}
}