美文网首页
IO(打印流练习)

IO(打印流练习)

作者: menmo_O | 来源:发表于2017-12-30 23:15 被阅读0次

    打印流:
    该流提供了打印方法,可以将各种数据类型的数据都原样打印。

    字节打印流:
    PrintStream
    构造函数可以接收的参数类型:
    1,file对象,File
    2,字符串路径。String
    3,字节输出流。OutputStream

    字符打印流:
    PrintWriter
    构造函数可以接收的参数类型:
    1,file对象,File
    2,字符串路径。String
    3,字节输出流。OutputStream
    4,字符输出流。Writer

    import java.io.*;
    class PrintStreamDemo 
    {
        public static void main(String[] args) throws IOException
        {
            BufferedReader bufr = 
                new BufferedReader(new InputStreamReader(System.in));
            PrintWriter out = new PrintWriter(new FileWriter("a.txt"),true);
            String line = null;
            while((line=bufr.readLine())!=null)
            {
                if("over".equals(line))
                    break;
                out.println(line.toUpperCase());
                //out.flush();
            }
            out.close();
            bufr.close();
        }
    }
    

    相关文章

      网友评论

          本文标题:IO(打印流练习)

          本文链接:https://www.haomeiwen.com/subject/dazngxtx.html