小象學(xué)院傳統(tǒng)行業(yè)數(shù)字化轉(zhuǎn)型
public static Object removeField(Object obj) throws Exception {
? ? ? ?Set<String> fieldSet = new HashSet();
? ? ? ?fieldSet.add("password");
? ? ? ?Field[] fields = obj.getClass().getDeclaredFields();
? ? ? ?for (Field field : fields) {
? ? ? ? ? ?if (fieldSet.contains(field.getName())) {
? ? ? ? ? ? ? ?field.setAccessible(true);
? ? ? ? ? ? ? ?field.set(obj, null);
? ? ? ? ? ? ? ?return obj;
? ? ? ? ? ?}
標(biāo)簽: