/src/main/java/com/financialnet/util/JsonUtil.java
https://gitlab.com/huangjunbin/pupu · Java · 80 lines · 68 code · 12 blank · 0 comment · 0 complexity · 307c4ad8f7bf60e548b123d2e9197f78 MD5 · raw file
- package com.financialnet.util;
- import java.util.List;
- import org.json.JSONException;
- import org.json.JSONObject;
- import android.util.Log;
- import com.alibaba.fastjson.JSON;
- import com.alibaba.fastjson.serializer.SerializerFeature;
- public final class JsonUtil {
- private static String TAG = "FastJson";
- public static boolean isSuccess(String jsonString) {
- JSONObject json;
- boolean flag = false;
- try {
- json = new JSONObject(jsonString);
- flag = json.getBoolean("result");
- } catch (JSONException e) {
- e.printStackTrace();
- }
- return flag;
- }
- public static String getArrayString(String jsonString, String key) {
- String value = "";
- JSONObject json;
- try {
- json = new JSONObject(jsonString);
- value = json.getJSONArray(key).toString();
- } catch (JSONException e) {
- e.printStackTrace();
- }
- return value;
- }
- public static String convertObjectToJson(Object o) {
- SerializerFeature[] features = { SerializerFeature.QuoteFieldNames,
- SerializerFeature.WriteMapNullValue,
- SerializerFeature.WriteNullListAsEmpty,
- SerializerFeature.WriteNullStringAsEmpty,
- SerializerFeature.WriteNullNumberAsZero,
- SerializerFeature.WriteNullBooleanAsFalse,
- SerializerFeature.WriteSlashAsSpecial,
- SerializerFeature.BrowserCompatible,
- SerializerFeature.DisableCircularReferenceDetect,
- SerializerFeature.WriteDateUseDateFormat };
- try {
- Log.d(TAG, JSON.toJSONString(o, features));
- return JSON.toJSONString(o, features);
- } catch (Exception e) {
- Log.e(TAG, e.toString());
- return "";
- }
- }
- public static <T> T convertJsonToObject(String json, Class<T> clazz) {
- try {
- return JSON.parseObject(json, clazz);
- } catch (Exception e) {
- Log.e(TAG, e.toString());
- Log.e("merror", e.toString());
- return null;
- }
- }
- public static <T> List<T> convertJsonToList(String json, Class<T> clazz) {
- try {
- return JSON.parseArray(json, clazz);
- } catch (Exception e) {
- Log.e(TAG, e.toString());
- return null;
- }
- }
- }