Class IO
System.in
and System.out
for line-oriented input and output.
The readln()
and readln(String)
methods decode bytes read from
System.in
into characters. The charset used for decoding is specified by the
stdin.encoding
property. If this property is not present,
or if the charset it names cannot be loaded, then UTF-8 is used instead. Decoding
always replaces malformed and unmappable byte sequences with the charset's default
replacement string.
Charset decoding is set up upon the first call to one of the readln
methods.
Decoding may buffer additional bytes beyond those that have been decoded to characters
returned to the application. After the first call to one of the readln
methods,
any subsequent use of System.in
results in unspecified behavior.
- API Note:
- The expected use case is that certain applications will use only the
readln
methods to read from the standard input, and they will not mix these calls with other techniques for reading fromSystem.in
. - Since:
- 25
-
Method Summary
Modifier and TypeMethodDescriptionstatic void
Writes a string representation of the specified object to the standard output.static void
println()
Writes a line separator to the standard output.static void
Writes a string representation of the specified object and then writes a line separator to the standard output.static String
readln()
Reads a single line of text from the standard input.static String
Writes a prompt and then reads a line of input.
-
Method Details
-
println
Writes a string representation of the specified object and then writes a 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 the standard 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 in above in the class specification.
- Returns:
- a string containing the line read from the standard input, not
including any line separator characters. Returns
null
if an end 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 single line of text as if by callingreadln
.If necessary, this method first sets up charset decoding, as described in above in the class specification.
- Parameters:
prompt
- the prompt string, may benull
- Returns:
- a string containing the line read from the standard input, not
including any line separator characters. Returns
null
if an end of stream has been reached without having read any characters. - Throws:
IOError
- if an I/O error occurs
-