通過反射獲取對象(Object)的所有屬性的名稱以及數(shù)值,放入Map裆站。
可以直接循環(huán)添加到Http請求中条辟,作為Get請求的參數(shù)拼接。
如代碼所示宏胯,調(diào)用getParamsMap(Object obj)即可獲取到obj的屬性Map(鍵值對)羽嫡。
private static Map<String, String> getMap(Object obj, Class<?> cls, String np) {
Map<String, String> maps = new HashMap<>();
if (null != cls.getSuperclass() && Object.class != cls.getSuperclass()) {
Map<String, String> mapsSuper = getMap(obj, cls.getSuperclass(), np);
if (null != mapsSuper && !mapsSuper.isEmpty())
maps.putAll(mapsSuper);
}
try {
Field[] fields = cls.getDeclaredFields();
for (Field field : fields) {
field.setAccessible(true);// 設(shè)置訪問權(quán)限
if (Modifier.isTransient(field.getModifiers())) {// 是否有transient修飾符,有的話忽略該屬性
continue;
}
String name = field.getName();// 屬性名稱
if (name.equalsIgnoreCase("this$0") || name.equalsIgnoreCase("serialVersionUID")) {
continue;// 內(nèi)部類有this$0這個默認(rèn)屬性指向外部類肩袍,serialVersionUID不需要
}
if (field.isAnnotationPresent(SerializedName.class)) {
name = field.getAnnotation(SerializedName.class).value();
}
String key = null == np ? name : np + '[' + name + ']';
Class<?> type = field.getType();
if (type.isPrimitive()) {// 基本類型
Object value = field.get(obj);// 獲取屬性值杭棵,需要從源對象中獲取
maps.put(key, null == value ? "" : value.toString());
continue;
}
Object value = field.get(obj);// 獲取屬性值,需要從源對象中獲取
if (null == value) {
continue;
}
if (value.getClass().isArray()) {// 屬性是數(shù)組類型
int length = Array.getLength(value);
for (int i = 0; i < length; i++) {
Object objItem = Array.get(value, i);
Map<String, String> mapItem = getMap(objItem, objItem.getClass(), key + '[' + i + ']');
if (null != mapItem && !mapItem.isEmpty())
maps.putAll(mapItem);
}
continue;
}
if (value instanceof List) {// 屬性是List類型
List<Object> p = (List) value;
for (int i = 0; i < p.size(); i++) {
Object objItem = p.get(i);
Map<String, String> mapItem = getMap(objItem, objItem.getClass(), key + '[' + i + ']');
if (null != mapItem && !mapItem.isEmpty())
maps.putAll(mapItem);
}
continue;
}
if (value instanceof Map) {// 屬性是Map類型
Map<Object, Object> p = (Map) value;
for (Map.Entry entry : p.entrySet()) {
String tn = entry.getValue().getClass().getName();// 判斷Map的Value對象類型了牛,基礎(chǔ)類型直接加入Maps
if (tn.startsWith("java.lang.")) {
if ("java.lang.Object".equals(tn)) {
Map<String, String> mapField = getMap(entry.getValue(), entry.getValue().getClass(), key + '[' + entry.getKey() + ']');
if (null != mapField && !mapField.isEmpty())
maps.putAll(mapField);
continue;
}
maps.put(key + '[' + entry.getKey() + ']', null == entry.getValue() ? "" : entry.getValue().toString());
continue;
}
Map<String, String> mapItem = getMap(entry.getValue(), entry.getValue().getClass(), key + '[' + entry.getKey() + ']');
if (null != mapItem && !mapItem.isEmpty())
maps.putAll(mapItem);
}
continue;
}
if (type.getName().startsWith("java.lang.")) {// 基本類型封裝類颜屠,String
if ("java.lang.Object".equals(type.getName())) {
Map<String, String> mapField = getMap(value, value.getClass(), key);
if (null != mapField && !mapField.isEmpty())
maps.putAll(mapField);
continue;
}
maps.put(key, null == value ? "" : value.toString());
continue;
}
if (type.getName().equals("java.util.Date")) {// 日期時間類型
// TODO 日期時間類型需要自定義格式
maps.put(key, value.toString());
continue;
}
Map<String, String> mapField = getMap(value, value.getClass(), key);// 屬性是自定義類型
if (null != mapField && !mapField.isEmpty())
maps.putAll(mapField);
}
} catch (Exception e) {
e.printStackTrace();
}
return maps;
}
public static Map<String, String> getParamsMap(Object obj) {
if (null == obj) {
return null;
}
Map<String, String> map = getMap(obj, obj.getClass(), null);
return map;
}