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

learning java FileWriter

时间:2019-08-05 14:15:01      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:bsp   stack   try   pop   stat   rac   ack   int   file   

import java.io.FileWriter;
import java.io.IOException;

public class FileWriterTest {
    public static void main(String[] args) {
        try {
            var fw = new FileWriter("pop.txt");
            {
                fw.write("11111\r\n");
                fw.write("11111\r\n");
                fw.write("11111\r\n");
                fw.write("11111\r\n");
                fw.write("11111\r\n");
            }
            fw.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

 

learning java FileWriter

标签:bsp   stack   try   pop   stat   rac   ack   int   file   

原文地址:https://www.cnblogs.com/lianghong881018/p/11302429.html

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