Skip to content

Instantly share code, notes, and snippets.

@azakordonets
Created May 21, 2014 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save azakordonets/d140d1638cf60c741271 to your computer and use it in GitHub Desktop.
Save azakordonets/d140d1638cf60c741271 to your computer and use it in GitHub Desktop.
returns absolute path to the file
public static String getResourcePath(String relativePath) {
return new Utils().getClass().getResource("/").getPath() + relativePath;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment