Java   View all facts   Glossary   Help
terminal input and output
Next kbTopthread group    UpkbTop    Previous kbTopsyntactic unit   

terminal input and output comparison table
Subject is a kind of is a subtopic of have example
kbTop   
terminal input and outputkbTopInput and Output
//Print
System.out.println("This line will be printed");
//Read from the keyboard
byte[] buffer = new byte[1024];
System.in.read(buffer);
String theInput = new String(buffer).trim();

Next kbTopthread group    UpkbTop    Previous kbTopsyntactic unit