Java IO System.in 與 System.out

更多 Java IO & NIO方面的文章,請參見文集《Java IO & NIO》


System 類

  • 所在包:java.lang.System
  • 構(gòu)造方法為私有方法骑脱,因此不能被實(shí)例化
  • 類名被 final 修飾,因此不能被繼承:public final class System {

System.in 標(biāo)準(zhǔn)輸入流

/**
 * The "standard" input stream. This stream is already
 * open and ready to supply input data. Typically this stream
 * corresponds to keyboard input or another input source specified by
 * the host environment or user.
 */
public final static InputStream in = null;

讀取 System.in

用 BufferedReader 封裝:

public static void main(String[] args) throws Exception {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

    String s = br.readLine();
    System.out.println(s);
}

System.out 標(biāo)準(zhǔn)輸出流

 * The "standard" output stream. This stream is already
 * open and ready to accept output data. Typically this stream
 * corresponds to display output or another output destination
 * specified by the host environment or user.
 * <p>
 * For simple stand-alone Java applications, a typical way to write
 * a line of output data is:
 * <blockquote><pre>
 *     System.out.println(data)
 * </pre></blockquote>
 * <p>
 * See the <code>println</code> methods in class <code>PrintStream</code>.
 *
 * @see     java.io.PrintStream#println()
 * @see     java.io.PrintStream#println(boolean)
 * @see     java.io.PrintStream#println(char)
 * @see     java.io.PrintStream#println(char[])
 * @see     java.io.PrintStream#println(double)
 * @see     java.io.PrintStream#println(float)
 * @see     java.io.PrintStream#println(int)
 * @see     java.io.PrintStream#println(long)
 * @see     java.io.PrintStream#println(java.lang.Object)
 * @see     java.io.PrintStream#println(java.lang.String)
 */
public final static PrintStream out = null;

System.in 與 System.out 何時(shí)被構(gòu)造苍糠?

System 類中有方法 initializeSystemClass()叁丧,在線程初始化后調(diào)用該方法,用于構(gòu)造 System 類的相關(guān)屬性椿息,包括 in 和 out:

/**
 * Initialize the system class.  Called after thread initialization.
 */
private static void initializeSystemClass() {

    // VM might invoke JNU_NewStringPlatform() to set those encoding
    // sensitive properties (user.home, user.name, boot.class.path, etc.)
    // during "props" initialization, in which it may need access, via
    // System.getProperty(), to the related system encoding property that
    // have been initialized (put into "props") at early stage of the
    // initialization. So make sure the "props" is available at the
    // very beginning of the initialization and all system properties to
    // be put into it directly.
    props = new Properties();
    initProperties(props);  // initialized by the VM

    // There are certain system configurations that may be controlled by
    // VM options such as the maximum amount of direct memory and
    // Integer cache size used to support the object identity semantics
    // of autoboxing.  Typically, the library will obtain these values
    // from the properties set by the VM.  If the properties are for
    // internal implementation use only, these properties should be
    // removed from the system properties.
    //
    // See java.lang.Integer.IntegerCache and the
    // sun.misc.VM.saveAndRemoveProperties method for example.
    //
    // Save a private copy of the system properties object that
    // can only be accessed by the internal implementation.  Remove
    // certain system properties that are not intended for public access.
    sun.misc.VM.saveAndRemoveProperties(props);


    lineSeparator = props.getProperty("line.separator");
    sun.misc.Version.init();

    FileInputStream fdIn = new FileInputStream(FileDescriptor.in);
    FileOutputStream fdOut = new FileOutputStream(FileDescriptor.out);
    FileOutputStream fdErr = new FileOutputStream(FileDescriptor.err);
    setIn0(new BufferedInputStream(fdIn));
    setOut0(newPrintStream(fdOut, props.getProperty("sun.stdout.encoding")));
    setErr0(newPrintStream(fdErr, props.getProperty("sun.stderr.encoding")));

    // Load the zip library now in order to keep java.util.zip.ZipFile
    // from trying to use itself to load this library later.
    loadLibrary("zip");

    // Setup Java signal handlers for HUP, TERM, and INT (where available).
    Terminator.setup();

    // Initialize any miscellenous operating system settings that need to be
    // set for the class libraries. Currently this is no-op everywhere except
    // for Windows where the process-wide error mode is set before the java.io
    // classes are used.
    sun.misc.VM.initializeOSEnvironment();

    // The main thread is not added to its thread group in the same
    // way as other threads; we must do it ourselves here.
    Thread current = Thread.currentThread();
    current.getThreadGroup().add(current);

    // register shared secrets
    setJavaLangAccess();

    // Subsystems that are invoked during initialization can invoke
    // sun.misc.VM.isBooted() in order to avoid doing things that should
    // wait until the application class loader has been set up.
    // IMPORTANT: Ensure that this remains the last initialization action!
    sun.misc.VM.booted();
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末歹袁,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子寝优,更是在濱河造成了極大的恐慌条舔,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件乏矾,死亡現(xiàn)場離奇詭異孟抗,居然都是意外死亡迁杨,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進(jìn)店門凄硼,熙熙樓的掌柜王于貴愁眉苦臉地迎上來铅协,“玉大人,你說我怎么就攤上這事摊沉『罚” “怎么了?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵说墨,是天一觀的道長骏全。 經(jīng)常有香客問我,道長尼斧,這世上最難降的妖魔是什么姜贡? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮棺棵,結(jié)果婚禮上楼咳,老公的妹妹穿的比我還像新娘。我一直安慰自己烛恤,他們只是感情好母怜,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著缚柏,像睡著了一般糙申。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上船惨,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天,我揣著相機(jī)與錄音缕陕,去河邊找鬼粱锐。 笑死,一個(gè)胖子當(dāng)著我的面吹牛扛邑,可吹牛的內(nèi)容都是我干的怜浅。 我是一名探鬼主播,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼蔬崩,長吁一口氣:“原來是場噩夢啊……” “哼恶座!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起沥阳,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤跨琳,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后桐罕,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體脉让,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡桂敛,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了溅潜。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片术唬。...
    茶點(diǎn)故事閱讀 38,064評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖滚澜,靈堂內(nèi)的尸體忽然破棺而出粗仓,到底是詐尸還是另有隱情,我是刑警寧澤设捐,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布借浊,位于F島的核電站,受9級特大地震影響挡育,放射性物質(zhì)發(fā)生泄漏巴碗。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一即寒、第九天 我趴在偏房一處隱蔽的房頂上張望橡淆。 院中可真熱鬧,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至役首,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背趋艘。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留凶朗,地道東北人瓷胧。 一個(gè)月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像棚愤,于是被迫代替她去往敵國和親搓萧。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 1. Java基礎(chǔ)部分 基礎(chǔ)部分的順序:基本語法宛畦,類相關(guān)的語法瘸洛,內(nèi)部類的語法,繼承相關(guān)的語法次和,異常的語法反肋,線程的語...
    子非魚_t_閱讀 31,581評論 18 399
  • (一)Java部分 1、列舉出JAVA中6個(gè)比較常用的包【天威誠信面試題】 【參考答案】 java.lang;ja...
    獨(dú)云閱讀 7,071評論 0 62
  • 小編費(fèi)力收集:給你想要的面試集合 1.C++或Java中的異常處理機(jī)制的簡單原理和應(yīng)用踏施。 當(dāng)JAVA程序違反了JA...
    八爺君閱讀 4,573評論 1 114
  • 1.import static是Java 5增加的功能,就是將Import類中的靜態(tài)方法囚玫,可以作為本類的靜態(tài)方法來...
    XLsn0w閱讀 1,213評論 0 2
  • 今天經(jīng)歷了很多喧锦。 早上特別煩,沒有理由也是有理由抓督,怕被忽略燃少,才由難受變?yōu)闊?早上的時(shí)候被誤解,自責(zé)后又發(fā)現(xiàn)自己沒...
    柒令子閱讀 178評論 0 0