码迷,mamicode.com
首页 > 编程语言 > 详细

Java基础IO类之打印流

时间:2019-12-03 23:02:34      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:int   字符   new   stat   writer   byte   iter   代码   cat   

package IODemo;

import java.io.*;
/*
打印流 : 很方便的进行输出
字节打印流
    增强输出功能

字符打印流
 */
public class PrintStreamDemo {



    private  static  void charPrint(){
        File file = new File("d:\\test\\t.txt");
        try {
            Writer w = new FileWriter(file,true);
            BufferedWriter br = new BufferedWriter(w);
            PrintWriter ps = new PrintWriter(br);
            ps.println("嗨~");
            ps.close();

        } catch (IOException e) {
            e.printStackTrace();
        }

    }

    private static void bytePrint(){
        File file = new File("d:\\test\\t.txt");
        try {
            OutputStream out = new FileOutputStream(file,true);
            BufferedOutputStream bos = new BufferedOutputStream(out);
            PrintStream ps  =new PrintStream(bos);
            ps.println("好好学习天天向上");
            ps.close();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }

    }


    public static void main(String[] args) {

  //  bytePrint();
        charPrint();
    }
}

如上代码

Java基础IO类之打印流

标签:int   字符   new   stat   writer   byte   iter   代码   cat   

原文地址:https://www.cnblogs.com/lpss-75074038/p/11979936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!