Class IO
System.inandSystem.out for line-oriented input and output.Thereadln() andreadln(String) methods decode bytes read fromSystem.in into characters. The charset used for decoding is specified by thestdin.encoding property. If this property is not present,or if the charset it names cannot be loaded, then UTF-8 is used instead. Decodingalways replaces malformed and unmappable byte sequences with the charset's defaultreplacement string.
Charset decoding is set up upon the first call to one of thereadln methods.Decoding may buffer additional bytes beyond those that have been decoded to charactersreturned to the application. After the first call to one of thereadln methods,any subsequent use ofSystem.in results in unspecified behavior.
- API Note:
- The expected use case is that certain applications will use only the
readlnmethods to read from the standard input, and they will not mix these calls withother techniques for reading fromSystem.in. - Since:
- 25
Method Summary
Modifier and TypeMethodDescriptionstatic voidWrites a string representation of the specified object to thestandard output.static voidprintln()Writes a line separator to the standard output.static voidWrites a string representation of the specified object and then writesa line separator to the standard output.staticStringreadln()Reads a single line of text from the standard input.staticStringWrites a prompt and then reads a line of input.
Method Details
println
Writes a string representation of the specified object and then writesa line separator to the standard output.The effect is as if
println(obj)had been called onSystem.out.- Parameters:
obj- the object to print, may benull
println
public static void println()Writes a line separator to the standard output.The effect is as if
println()had been called onSystem.out.print
Writes a string representation of the specified object to thestandard output.The effect is as if
print(obj)had been called onSystem.out.- Parameters:
obj- the object to print, may benull
readln
Reads a single line of text from the standard input.One line is read from the decoded input as if by
BufferedReader.readLine()and then the result is returned.If necessary, this method first sets up charset decoding, as described inabove in the class specification.
- Returns:
- a string containing the line read from the standard input, notincluding any line separator characters. Returns
nullif anend of stream has been reached without having read any characters. - Throws:
IOError- if an I/O error occurs
readln
Writes a prompt and then reads a line of input.Writes a prompt as if by calling
print, and then reads a singleline of text as if by callingreadln.If necessary, this method first sets up charset decoding, as described inabove in the class specification.
- Parameters:
prompt- the prompt string, may benull- Returns:
- a string containing the line read from the standard input, notincluding any line separator characters. Returns
nullif anend of stream has been reached without having read any characters. - Throws:
IOError- if an I/O error occurs