Skip to content

Instantly share code, notes, and snippets.

@jaydonnell
Created May 11, 2011 03:56
Show Gist options
  • Save jaydonnell/965897 to your computer and use it in GitHub Desktop.
Save jaydonnell/965897 to your computer and use it in GitHub Desktop.
java field
public boolean exists (String className) {
try {
Class.forName (className);
return true;
}
catch (ClassNotFoundException exception) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment