Skip to content

Instantly share code, notes, and snippets.

@codyhex
Created January 30, 2017 19:25
Show Gist options
  • Save codyhex/36517f8a13d9dd4a368771ee288fb3a8 to your computer and use it in GitHub Desktop.
Save codyhex/36517f8a13d9dd4a368771ee288fb3a8 to your computer and use it in GitHub Desktop.
import java.io.IOException;
import java.util.Arrays;
public class InputStreamExample {
public static void main(String[] args){
byte[] bytes = new byte[30];
try {
System.out.println("Available bytes :"+System.in.available());
System.out.print("Write something :");
int bytesread = System.in.read(bytes,5,14);
System.out.println("I've read :"+bytesread +" bytes from the InputStream");
System.out.println(Arrays.toString(bytes));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment