工作中很多时候需要从Class类中获取属性的值,下面会基础获取,以及结合工作内容
java
public class Main {
public static void main(String[] args) {
Person person = new Person("张三", 25);
try {
Field nameField = Person.class.getDeclaredField("name");
Field ageField = Person.class.getDeclaredField("age");
// 设置访问权限,如果属性是私有的
nameField.setAccessible(true);
ageField.setAccessible(true);
// 获取属性值
String name = (String) nameField.get(person);
int age = (int) ageField.get(person);
System.out.println("姓名:" + name);
System.out.println("年龄:" + age);
} catch (NoSuchFieldException | IllegalAccessException e) {
e.printStackTrace();
}
}
}
class Person {
private String name;
private int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
}
写一个通用方法从list中获取想要内容
java
public <T> List<PatientRequest> getPatientStatusByList(List<T> list,Class<T> clazz) throws NoSuchFieldException, IllegalAccessException {
if (CollUtil.isEmpty(list)) {
return null;
}
List<PatientRequest> patients= new ArrayList<>();
for (T t:list){
PatientRequest patient=new PatientRequest();
// 设置访问权限,如果属性是私有的
Field patientId=clazz.getDeclaredField("patientId");
Field visitNo=clazz.getDeclaredField("visitNo");
// 设置访问权限,如果属性是私有的
patientId.setAccessible(true);
visitNo.setAccessible(true);
patient.setPatientId((String) patientId.get(t));
patient.setVisitNo((String) visitNo.get(t));
patients.add(patient);
}
if (CollUtil.isEmpty(patients)){
return null;
}
return patients;
}
本文作者:Weee
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!