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

0725每日一练---文件写入

时间:2017-07-26 02:01:44      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:write   nal   block   transform   tput   tac   public   blog   not   

package com.mxf.date0725;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;

public class IpTransform {

    public static void main(String[] args) {
        String data = "Hello world";
        File file = new File("D:/1.txt");
        FileOutputStream output = null;
        try {
            if (!file.exists()) {
                file.createNewFile();
            }
            output = new FileOutputStream(file);
            output.write(data.getBytes());
            output.flush();
            output.close();
        } catch (FileNotFoundException e) {
            System.out.println("Exception = " + e);
        } catch (IOException e) {
            System.out.println("Exception2 = " + e);
        }
        finally {
            try {
                output.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }

}

http://www.jb51.net/article/47062.htm

0725每日一练---文件写入

标签:write   nal   block   transform   tput   tac   public   blog   not   

原文地址:http://www.cnblogs.com/snowwhite/p/7237223.html

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