zoukankan      html  css  js  c++  java
  • 打印流

    打印流

    
    /**
    
     * 使用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.
  • 相关阅读:
    基础DP(初级版)
    UVA-816.Abbott's Tevenge (BFS + 打印路径)
    1044: 数圈
    1049: 打牌
    1047: 小A的计算器
    1046: 最小的K个数
    1045: 愚人节的礼物
    1044: 数圈
    1043: 绩点计算
    1042: 小丑排序
  • 原文地址:https://www.cnblogs.com/yuyu666/p/9733904.html
Copyright © 2011-2022 走看看