Object Oriented Software Engineering   View all facts   Glossary   Help
subject > Java terminal I/O
Next subjectlive activation    Upsubject    Previous subjectJava clause   

Java terminal I/O comparison table
Subject is a kind of is a subtopic of have example
subjectkbTop  
Java terminal I/OsubjectThe Basics of Java
//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 subjectlive activation    Upsubject    Previous subjectJava clause