Eclipse Keyboard output text, display to on-screen method

Source: Internet
Author: User

Method 1

/* Standard ideas:
Analysis
* 1. Source
* Keyboard: System.in
* 2. Destination
* Screen: System.out
* Files: File
* 3. Analysis: Source, type of destination stream (character, byte)
* Source: Byte stream (input stream InputStream)
* Purpose: Byte stream (output stream outputstream)
* 4. Do I need to decorate?
* BufferedReader
*
*/
InputStream is=system.in;//Byte stream
Reader reader=new InputStreamReader (IS);
Decoration
BufferedReader br=new BufferedReader (reader);
OutputStream os=system.out;
Writer w=new outputstreamwriter (OS);
BufferedWriter bw=new BufferedWriter (w);
String Data=br.readline ();
while (!data.equals ("over")) {
Bw.write (data);
Bw.newline ();//Line break
Bw.flush ();
Data=br.readline ();

}
System.out.println ("succeeded");//mainly describes the use of the conversion stream
}

Scanner

Method 2.

Use scanner to be more concise

Scanner is=new Scanner (system.in); The following code enables the user to read a number from the system.in
System.out.println ("Start output text directory");
OutputStream os=system.out;
String B=is.nextline ();
while (!b.equals ("over"))
{
System.out.println (b);
B=is.nextline (); Prevent the cycle of death
}
System.out.println ("to End");
}

Eclipse Keyboard output text, display to on-screen method

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.