Java文件写入文本内容方法

package com.rockman.learn;

import java.io.*;

/**
 * Created by jiuxiaosheng on 14-2-25.
 */
public class FileWrite {

    /**
     * 使用PrintWriter往文件中写入字符串内容
     * @param filepath
     * @param content
     */
    public static void fileWrite1(String filepath, String content) {
        try {
            PrintWriter printWriter = new PrintWriter(new File(filepath));
            try {
                printWriter.print(content);
            }finally {
                printWriter.close();
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }

    /**
     * 使用OutputStreamWriter往文件写入字符串内容
     * @param filepath
     * @param content
     */
    public static void fileWrite2(String filepath, String content) {
        try {
            FileOutputStream fos = new FileOutputStream(filepath);
            OutputStreamWriter osw = new OutputStreamWriter(fos, "utf-8");
            try {
                osw.write(content);
                osw.flush();
            }finally {
                osw.close();
                fos.close();
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 直接使用FileOutputStream写入字符串到文件
     * @param filePath
     * @param content
     */
    public static void fileWrite3(String filePath, String content) {
        try {
            FileOutputStream fos = new FileOutputStream(filePath);
            try {
                fos.write(content.getBytes());
            }finally {
                fos.close();
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 使用BufferedOutputStream写入字符串到文件
     * @param filePath
     * @param content
     */
    public static void fileWrite4(String filePath, String content) {
        try {
            FileOutputStream fos = new FileOutputStream(filePath);
            BufferedOutputStream bos = new BufferedOutputStream(fos);
            try {
                bos.write(content.getBytes());
                bos.flush();
            } finally {
                bos.close();
                fos.close();
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * 使用FileWriter写入字符串到文件
     * @param filePath
     * @param content
     */
    public static void fileWrite5(String filePath, String content) {
        try {
            FileWriter fw = new FileWriter(filePath);
            try {
                fw.write(content);
                fw.flush();
            } finally {
                fw.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值