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

JAVA IO ( 两种打印流 )

时间:2017-01-19 21:41:32      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:nts   div   --   except   throw   out   byte   font   text   

<!--字符打印流-->

public class CharDemo {
    public static void main(String[] args) throws Exception {
        // 创建字符打印流
        PrintWriter p = new PrintWriter(new FileWriter(new File("src/打印流_输出流/text.txt"), true));
        p.print("黄伟强");
        p.println();
        p.print(345);
        p.close();
    }
}

<!--字节打印流-->

public class ByteDemo {
    public static void main(String[] args) throws Exception {
        // 创建字节打印流
        PrintStream p = new PrintStream(new FileOutputStream(new File("src/打印流_输出流/text.txt"), true));
        p.print("黄");
        p.println();
        p.print(123);
        p.close();
    }
}

 

JAVA IO ( 两种打印流 )

标签:nts   div   --   except   throw   out   byte   font   text   

原文地址:http://www.cnblogs.com/lovling/p/6308657.html

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