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

terminal input and output
subjectfact 
terminal input and outputhas example
//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();
  
source: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:38:04.0
is a subtopic of Input and Output2001-10-19 11:38:04.0
is a kind of kbTopsource: Object Oriented Software Engineering by Lethbridge and Laganière, 2001-10-19 11:38:04.0