Created
January 30, 2017 19:25
-
-
Save codyhex/36517f8a13d9dd4a368771ee288fb3a8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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