Skip to content

Instantly share code, notes, and snippets.

@HashRaygoza
Created February 10, 2020 03:50
Show Gist options
  • Select an option

  • Save HashRaygoza/80986af8b4e0d24091622373defd3095 to your computer and use it in GitHub Desktop.

Select an option

Save HashRaygoza/80986af8b4e0d24091622373defd3095 to your computer and use it in GitHub Desktop.
funcion que llama a un getter
public Object callGetter(Object obj, String fieldName) throws IntrospectionException, llegalAccessException, IllegalArgumentException, InvocationTargetException {
PropertyDescriptor pd;
pd = new PropertyDescriptor(fieldName, obj.getClass());
return pd.getReadMethod().invoke(obj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment