JavaScriptSerializer jss = new JavaScriptSerializer(); Dictionary<string, object> dict = new Dictionary<string, object>(); string strDATAJSON = ""; dict.Add("AA", "00"); dict.Add("BB", "00"); d…
public static class WebExtension { public static T Decode<T>(this RequestBase res) { Type type = res.GetType(); // For each property of this object, html decode it if it is of type string foreach (PropertyInfo propertyInfo in type.GetProperties()) {…
JAVA中使用alibaba fastjson实现JSONObject.Object.Json字符串的转换 Object转JSON字符串:String jsonStr = JSONObject.toJSONString(object); JSON字符串转JSONObject:JSONObject jsonObject = JSONObjcet.parseObject(jsonStr); JSON字符串转Object对象T t = JSON.parseObject(jsonStr,T.class)…
Dictionary<string, object> dcic = JsonHelper.DataRowFromJSON(resultdepth); foreach (var depthkey in dcic.Keys) { if (depthkey.Contains("data")) { Dictionary<string, object> Ddata = (Dictionary<string, object>)dcic["data&qu…
近期做指纹识别,需要用到缓存文件,数据量并不大,用redis不合适,所以用到了txt文件. 思路是 1.定时查询指纹,存到txt缓存文件中.      2.新增或删除指纹时,查询指纹,存到txt缓存文件中. 3.需要对比查询指纹时,从txt缓存文件中查找,若缓存文件为空,则从数据库查找. 实现后,速度从9S提升到了最快0.7S. 期间用到了 List<Map<String, Object>> 转为 json 存到txt文件中,txt 文件中的 json 内容转为 List<M…
Dictionary<string, object> dic = new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase); dic.Keys.Contains("Key", StringComparer.OrdinalIgnoreCase);…
Tuple<int, int> Dictionary<string, object>妙用…
fastjson在将Map<Integer, String>转换成JSON字符串时,出现中文乱码问题. 先记下这个坑,改天在看看是怎么导致的,暂时通过避免使用Integer作为键(使用String)避免中文乱码问题.…
例如postMan传String类型的json字符串请后台接口时,需要\转义…
1,import com.fasterxml.jackson.databind.ObjectMapper; ObjectMapper mapper = new ObjectMapper(); Myclass myclass = mapper.readValue(jsonStr , Myclass.class); //这里Myclass是我自己定义的类,里面有一系列的属性字段.jsonStr是需要传入的json参数 2,import com.alibaba.fastjson.JSONObject;…