Skip to content

Instantly share code, notes, and snippets.

@jessedearing
Created September 30, 2016 19:51
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 jessedearing/121b0aeb1b83c310f911dc18b42df7e4 to your computer and use it in GitHub Desktop.
Save jessedearing/121b0aeb1b83c310f911dc18b42df7e4 to your computer and use it in GitHub Desktop.
try(FileInputStream input = new FileInputStream(“file.txt”)) {
int data = input.read();
while(data != -1) {
System.out.print((char) data);
data = input.read();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment