Skip to content

Instantly share code, notes, and snippets.

@Makesh
Last active March 3, 2016 04:41
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 Makesh/406c56bd064024a84e09 to your computer and use it in GitHub Desktop.
Save Makesh/406c56bd064024a84e09 to your computer and use it in GitHub Desktop.
Java 8 : Read
String jsonContent = null;
String url = '/Users/makesh/temp/temp.json'
try {
jsonContent = new String(Files.readAllBytes(Paths.get(url)));
} catch (IOException e) {
logger.error(e.getMessage());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment