/**
* 獲取要查詢對象的方法和值,以Map返回
* @param model
* 實體類
* @return
* @throws NoSuchMethodException
* @throws IllegalAccessException
* @throws IllegalArgumentException
* @throws InvocationTargetException
*/
public static Map<String, String> getSearchProperty(Object model)
throws NoSuchMethodException, IllegalAccessException,
IllegalArgumentException, InvocationTargetException {
Map<String, String> resultMap = new HashMap<String, String>();
// 獲取實體類的全部屬性,返回Field數組
Field[] field = model.getClass().getDeclaredFields();
for (int i = 0; i < field.length; i++) { // 遍歷全部屬性
String name = field[i].getName(); // 獲取屬性的名字
// 獲取屬性的類型
String type = field[i].getGenericType().toString();
if (type.equals("class java.lang.String")) { // 若是type是類類型,則前面包含"class ",後面跟類名
// 生成get方法
Method m = model.getClass().getMethod(
"get" + UpperCaseField(name));
String value = (String) m.invoke(model); // 調用getter方法獲取屬性值
if (value != null) {
resultMap.put(name, value);
}
}
}
return resultMap;
}java
/**
* 將屬性首字母轉化爲大寫
*
* @param fieldName
* 屬性名稱
* @return
*/
private static String UpperCaseField(String fieldName) {
fieldName = fieldName.replaceFirst(fieldName.substring(0, 1), fieldName
.substring(0, 1).toUpperCase());
return fieldName;
}
數組