Skip to content

Instantly share code, notes, and snippets.

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

  • Save HashRaygoza/87b5a6e8de17dc6fc9a4f2489a03a358 to your computer and use it in GitHub Desktop.

Select an option

Save HashRaygoza/87b5a6e8de17dc6fc9a4f2489a03a358 to your computer and use it in GitHub Desktop.
Llamando un metodo
public void callMethod(Object objeto, String nombreMetodo) throws NoSuchMethodException, IllegalAccessException, IllegalArgumentException, InvocationTargetException {
Method metodo = objeto.getClass().getMethod(nombreMetodo);
metodo.invoke(objeto);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment