码迷,mamicode.com
首页 > 其他好文 > 详细

打印流

时间:2018-10-01 10:36:26      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:tle   void   %s   java   oid   使用   close   keyword   out   

打印流


/**

 * 使用PrintStream进行输出

 * */

import java.io.*;



class hello {

    public static void main(String[] args) throws IOException {

        PrintStream print = new PrintStream(new FileOutputStream(new File("d:"

                + File.separator + "hello.txt")));

        print.println(true);

        print.println("Rollen");

        print.close();

    }

}

【运行结果】:


true

Rollen

当然也可以格式化输出


/**

 * 使用PrintStream进行输出

 * 并进行格式化

 * */

import java.io.*;

class hello {

    public static void main(String[] args) throws IOException {

        PrintStream print = new PrintStream(new FileOutputStream(new File("d:"

                + File.separator + "hello.txt")));

        String name="Rollen";

        int age=20;

        print.printf("姓名:%s. 年龄:%d.",name,age);

        print.close();

    }

}

【运行结果】:


姓名:Rollen. 年龄:20.

打印流

标签:tle   void   %s   java   oid   使用   close   keyword   out   

原文地址:https://www.cnblogs.com/yuyu666/p/9733904.html

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