easyui

阅读更多
//后台将map转成json
response.setContentType("text/json;charset=UTF-8");
response.getWriter().print(Json.toJson(returnMap));


//公用json方法
/**
* JSON实用处理类
* @author
*/
public class Json {
public static String toJson(Object obj) {
String s = castToJson(obj);
if (s != null) {
return s;
} else {
return toJson(getAttributes(obj));
}
}

public static String toJson(Map map) {
String result = "";
Object[] keyArr =  map.keySet().toArray();
for (int i = 0; i < keyArr.length; i++) {
Object value = map.get(keyArr[i]);
String s = castToJson(value);
if (s != null) {
result += "\"" + keyArr[i] + "\":" + s + ",";
} else if (value instanceof List) {
String v = toJson((List) value);
result += "\"" + keyArr[i] + "\":" + v + ",";
} else if (value instanceof Object[]) {
String v = toJson((Object[]) value);
result += "\"" + keyArr[i] + "\":" + v + ",";
} else if (value instanceof Map) {
Map attr = castMap((Map) value);
attr = removeListAttr(attr);
result += "\"" + keyArr[i] + "\":" + Json.toJson(attr) + ",";
// }else if(value instanceof List){
// List attr =(List)value;
// result += "\"" + keyArr[i] + "\":" + Json.toJson(attr) + ",";
} else if (value.getClass().getName().startsWith("java") == false) {
Map attr = getAttributes(value);
attr = removeListAttr(attr);
result += "\"" + keyArr[i] + "\":" + Json.toJson(attr) + ",";
} else {
result += "\"" + keyArr[i] + "\":" + "\"" + value.toString() + "\",";
}
}
if (result.length() == 0) {
return "{}";
} else {
return "{" + result.substring(0, result.length() - 1) + "}";
}
}

public static String toJson(Object[] aa) {
if (aa.length == 0) {
return "[]";
} else {
String result = "";
for (int i = 0; i < aa.length ; i++) {
Object obj = aa[i];
String s = castToJson(obj);
if (s != null) {
result += s + ",";
} else if (obj instanceof Map) {
Map map = castMap((Map) obj);
//map = removeListAttr(map);
result += toJson(map) + ",";
} else {
Map attr = getAttributes(obj);
attr = removeListAttr(attr);
result += toJson(attr) + ",";
}
}
return "[" + result.substring(0, result.length() - 1) + "]";
}
}

public static String toJson(List ll) {
return toJson(ll.toArray());
}

/**
* 取得对象的属性
*
* @param obj
* @return 对象属性表
*/
public static Map getAttributes(Object obj) {
Class c = obj.getClass();
try {
Method method = c.getMethod("isProxy", null);
Boolean result = (Boolean) method.invoke(obj, null);
if (result.booleanValue() == true) {
c = c.getSuperclass();
}
} catch (Exception e) {
}
Map attr = new HashMap();

// 取得所有公共字段
Field field[] = c.getFields();
for (int i =0; i < field.length; i++) {
Field f = field[i];
try {
Object value = f.get(obj);
attr.put(f.getName(), value);
} catch (Exception e) {
}
}

// 取得所有本类方法
c.getDeclaredMethods();
Method method[] = c.getDeclaredMethods();
for (int j = 0; j < method.length; j++) {
Method m = method[j];
String mname = m.getName();
if (mname.equals("getClass")) {
continue;
} else if (mname.startsWith("get")) {
String pname = mname.substring(3);
if (pname.length() == 1) {
pname = pname.toLowerCase();
} else {
pname = pname.substring(0, 1).toLowerCase()
+ pname.substring(1);
}

try {
Object value = m.invoke(obj, null);
attr.put(pname, value);
} catch (Exception e) {

}
} else if (mname.startsWith("is")) {
String pname = mname.substring(2);
if (pname.length() == 1) {
pname = pname.toLowerCase();
} else {
pname = pname.substring(0, 1).toLowerCase()
+ pname.substring(1);
}

try {
Object value = m.invoke(obj, null);
attr.put(pname, value);
} catch (Exception e) {
}
}
}
return attr;
}

/**
* 将简单对象转换成JSON串
*
* @param obj
* @return 如果是简单对象则返回JSON,如果是复杂对象则返回null
*/
private static String castToJson(Object obj) {
if (obj == null) {
return "null";
} else if (obj instanceof Boolean) {
return obj.toString();
} else if (obj instanceof Integer || obj instanceof Long
|| obj instanceof Float || obj instanceof Double
|| obj instanceof Short || obj instanceof java.math.BigInteger
|| obj instanceof java.math.BigDecimal) {
return obj.toString();
} else if (obj instanceof String) {
String v = (String) obj;
v = v.replaceAll("\\\\", "\\\\\\\\");
v = v.replaceAll("\n", "\\\\n");
v = v.replaceAll("\r", "\\\\r");
v = v.replaceAll("\"", "\\\\\"");
v = v.replaceAll("'", "\\\\\'");
return "\"" + v + "\"";
} else if (obj instanceof java.sql.Date) {
java.text.SimpleDateFormat df = new java.text.SimpleDateFormat(
"yyyy-MM-dd");
java.sql.Date v = (java.sql.Date) obj;
String s = df.format(new java.util.Date(v.getTime()));
return "\"" + s + "\"";
} else if (obj instanceof java.util.Date) {
java.text.SimpleDateFormat df = new java.text.SimpleDateFormat(
"yyyy-MM-dd");
java.util.Date v = (java.util.Date) obj;
String s = df.format(v);
return "\"" + s + "\"";
} else if (obj instanceof java.util.Calendar) {

java.util.Calendar v = (java.util.Calendar) obj;
String s = DateUtils.toDateStr(v);
return "\"" + s + "\"";
} else if (obj instanceof java.sql.Timestamp) {
java.text.SimpleDateFormat df = new java.text.SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss");
java.sql.Timestamp v = (java.sql.Timestamp) obj;
String s = df.format(new java.util.Date(v.getTime()));
return "\"" + s + "\"";
} else if (obj instanceof java.sql.Clob) {

return "\"" + "" + "\"";
} else if (obj instanceof java.sql.Blob) {

return "\"" + "" + "\"";
} else {
return null;
}

}

public static Map castMap(Map map) {
Map newMap = new HashMap();
Object key[] = map.keySet().toArray();
for (int i = 0; i < key.length ; i++) {
newMap.put(key[i].toString(), map.get(key[i]));
}
return newMap;
}

/**
* 删除属性中类型是List的属性
*
* @param map
* @return
*/
private static Map removeListAttr(Map map) {
Map newMap = new HashMap();
Object[] entry = map.entrySet().toArray();
for (int i = 0; i < entry.length ; i++) {
Entry en = (Entry) entry[i];
if (!(en.getValue() instanceof List)) {
newMap.put(en.getKey(), en.getValue());
}
}
return newMap;
}
}

//easyui-combobox接收后台传来的list数据,msg.scjxqhlist为list集合
success:function(msg){
//$("#nsrscjx").combobox("loadData",msg.scjxqhlist);
$("#nsrscjx").combobox({
                   data: msg.scjxqhlist,
                 valueField: 'jdxzDm',
                 textField: 'jdxzmc'
             });
}

你可能感兴趣的:(easyui)