java向文件写数据的3种方式

下边列举出了三种向文件中写入数据的方式,当然还有其他方式,帮助自己理解文件写入类的继承关系,分享出来供初学者使用。类的关系:

file->fileoutputstream->outputstreamWriter(FileWriter继承outputstreamWriter对象)

 

测试代码:

 

 

package com.test.csdn;

 

import java.io.File;

import java.io.FileOutputStream;

import java.io.FileWriter;

import java.io.IOException;

import java.io.OutputStreamWriter;

 

/**

 * 测试向文件中写文件

 * 

 * @author rey

 * 

 */

public class TestWirteFile {

 

/**

* @param args

* @throws IOException

*/

public static void main(String[] args) throws IOException {

String sContent = "市场调研公司Forrester Research(以下简称“Forrester”)的分析师分析师莎拉·罗特曼-埃普斯(Sarah Rotman Epps)周四发布报告称,今年美国市场平板电脑销量将达到350万台。到2013年,美国平板电脑销售总量将超越台式机。";

String sDestFile = "/home/rey/temp/myWrite.txt";

File destFile = new File(sDestFile);

if (!destFile.exists()) {

destFile.createNewFile();

}

 

// 1.向文件写入内容

// writeByFileWrite(sDestFile, sContent);

 

// 2.FileOutputStream向文件写入内容

// writeByFileWrite(sDestFile, sContent);

 

// 2.OutputStreamWriter向文件写入内容

writeByOutputStreamWrite(sDestFile, sContent);

}

 

/**

* 用FileWrite向文件写入内容

* @param _destFile

* @throws IOException

*/

public static void writeByFileWrite(String _sDestFile, String _sContent)

throws IOException {

FileWriter fw = null;

try {

fw = new FileWriter(_sDestFile);

fw.write(_sContent);

} catch (Exception ex) {

ex.printStackTrace();

} finally {

if (fw != null) {

fw.close();

fw = null;

}

}

}

 

/**

* 用FileOutputStream向文件写入内容

* @param _destFile

* @throws IOException

*/

public static void writeByFileOutputStream(String _sDestFile,

String _sContent) throws IOException {

FileOutputStream fos = null;

try {

fos = new FileOutputStream(_sDestFile);

fos.write(_sContent.getBytes());

} catch (Exception ex) {

ex.printStackTrace();

} finally {

if (fos != null) {

fos.close();

fos = null;

}

}

}

 

/**

* 用OutputStreamWrite向文件写入内容

* @param _destFile

* @throws IOException

*/

public static void writeByOutputStreamWrite(String _sDestFile,

String _sContent) throws IOException {

OutputStreamWriter os = null;

FileOutputStream fos = null;

try {

fos = new FileOutputStream(_sDestFile);

os = new OutputStreamWriter(fos, "UTF-8");

os.write(_sContent);

} catch (Exception ex) {

ex.printStackTrace();

} finally {

if (os != null) {

os.close();

os = null;

}

if (fos != null) {

fos.close();

fos = null;

}

 

}

}

 

}

 

 

 

  • 2
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值