CS202 Java-116
Using a Java Input Device
l
// Get device in one statement
l
inData = new BuffredReader(new
InputStreamReader(System.in));
l
String oneLine;
l
// Store one line of text into oneLine
l
oneLine = inData.readLine();
l
l
Where does the text come from?