mirror of
https://github.com/openjdk/jdk.git
synced 2026-01-29 04:28:30 +00:00
144 lines
5.0 KiB
Java
144 lines
5.0 KiB
Java
/*
|
|
* Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 only, as
|
|
* published by the Free Software Foundation. Oracle designates this
|
|
* particular file as subject to the "Classpath" exception as provided
|
|
* by Oracle in the LICENSE file that accompanied this code.
|
|
*
|
|
* This code is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* version 2 for more details (a copy is included in the LICENSE file that
|
|
* accompanied this code).
|
|
*
|
|
* You should have received a copy of the GNU General Public License version
|
|
* 2 along with this work; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*
|
|
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
* or visit www.oracle.com if you need additional information or have any
|
|
* questions.
|
|
*/
|
|
|
|
package java.io;
|
|
|
|
import jdk.internal.javac.PreviewFeature;
|
|
|
|
/**
|
|
* A collection of static convenience methods that provide access to
|
|
* {@linkplain System#console() system console} for implicitly declared classes.
|
|
*
|
|
* <p> Each of this class' methods throws {@link IOError} if the system console
|
|
* is {@code null}; otherwise, the effect is as if a similarly-named method
|
|
* had been called on that console.
|
|
*
|
|
* <p> Input and output from methods in this class use the character set of
|
|
* the system console as specified by {@link Console#charset}.
|
|
*
|
|
* @since 23
|
|
*/
|
|
@PreviewFeature(feature = PreviewFeature.Feature.IMPLICIT_CLASSES)
|
|
public final class IO {
|
|
|
|
private IO() {
|
|
throw new Error("no instances");
|
|
}
|
|
|
|
/**
|
|
* Writes a string representation of the specified object to the system
|
|
* console, terminates the line and then flushes that console.
|
|
*
|
|
* <p> The effect is as if {@link Console#println(Object) println(obj)}
|
|
* had been called on {@code System.console()}.
|
|
*
|
|
* @param obj the object to print, may be {@code null}
|
|
*
|
|
* @throws IOError if {@code System.console()} returns {@code null},
|
|
* or if an I/O error occurs
|
|
*/
|
|
public static void println(Object obj) {
|
|
con().println(obj);
|
|
}
|
|
|
|
/**
|
|
* Terminates the current line on the system console and then flushes
|
|
* that console.
|
|
*
|
|
* <p> The effect is as if {@link Console#println() println()}
|
|
* had been called on {@code System.console()}.
|
|
*
|
|
* @throws IOError if {@code System.console()} returns {@code null},
|
|
* or if an I/O error occurs
|
|
* @since 24
|
|
*/
|
|
public static void println() {
|
|
con().println();
|
|
}
|
|
|
|
/**
|
|
* Writes a string representation of the specified object to the system
|
|
* console and then flushes that console.
|
|
*
|
|
* <p> The effect is as if {@link Console#print(Object) print(obj)}
|
|
* had been called on {@code System.console()}.
|
|
*
|
|
* @param obj the object to print, may be {@code null}
|
|
*
|
|
* @throws IOError if {@code System.console()} returns {@code null},
|
|
* or if an I/O error occurs
|
|
*/
|
|
public static void print(Object obj) {
|
|
con().print(obj);
|
|
}
|
|
|
|
/**
|
|
* Writes a prompt as if by calling {@code print}, then reads a single line
|
|
* of text from the system console.
|
|
*
|
|
* <p> The effect is as if {@link Console#readln(String) readln(prompt)}
|
|
* had been called on {@code System.console()}.
|
|
*
|
|
* @param prompt the prompt string, may be {@code null}
|
|
*
|
|
* @return a string containing the line read from the system console, not
|
|
* including any line-termination characters. Returns {@code null} if an
|
|
* end of stream has been reached without having read any characters.
|
|
*
|
|
* @throws IOError if {@code System.console()} returns {@code null},
|
|
* or if an I/O error occurs
|
|
*/
|
|
public static String readln(String prompt) {
|
|
return con().readln(prompt);
|
|
}
|
|
|
|
/**
|
|
* Reads a single line of text from the system console.
|
|
*
|
|
* <p> The effect is as if {@link Console#readln() readln()}
|
|
* had been called on {@code System.console()}.
|
|
*
|
|
* @return a string containing the line read from the system console, not
|
|
* including any line-termination characters. Returns {@code null} if an
|
|
* end of stream has been reached without having read any characters.
|
|
*
|
|
* @throws IOError if {@code System.console()} returns {@code null},
|
|
* or if an I/O error occurs
|
|
* @since 24
|
|
*/
|
|
public static String readln() {
|
|
return con().readln();
|
|
}
|
|
|
|
private static Console con() {
|
|
var con = System.console();
|
|
if (con != null) {
|
|
return con;
|
|
} else {
|
|
throw new IOError(null);
|
|
}
|
|
}
|
|
}
|