JAVA中PrintWriter的用法

2021-04-10 05:27

阅读:684

标签:方法   color   英语   stack   col   code   输出流   trace   ota   

    try (PrintWriter writer = new PrintWriter("student.txt")) {
            writer.println("姓名\t语文\t数学\t英语\t总分\t");
            for (Student s : set) {
                writer.println(s.getName() + "\t" + s.getChinese() + "\t" +
                        s.getMath() + "\t" + s.getEnglish() + "\t" + s.getTotalScore());
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

今天学到了一种简便的输出输出流方法,mark一下~

JAVA中PrintWriter的用法

标签:方法   color   英语   stack   col   code   输出流   trace   ota   

原文地址:https://www.cnblogs.com/debug-the-heart/p/13369716.html


评论


亲,登录后才可以留言!