本文主要是介绍JAVA——实现字符流写数据,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*
* FileOutputStream写数据的三种方式.
* public void write(byte b) : 向文件中写入一个字节
* public void write(byte b[]) : 向文件中写入一个字节数组
* public void write(byte b[], int off, int len) : 向文件中写入字节数组的一部分
*
* String类 :
* public byte[] getBytes() : 把字符串转成字节数组
*/
代码如下:
public class FileOutputStreamDemo2 {public static void main(String[] args) throws IOException {// 创建字节输出流对象FileOutputStream fos = new FileOutputStream("a.txt");// 写输入// fos.write(97);// fos.write('b');// fos.write(99);// byte[] bys = { 65, 66, 67, 68, 69 };// fos.write(bys);// byte[] bys = { 65, 66, 67, 68, 69 };// fos.write(bys, 1, 3);// fos.write("absdfghjk;c".getBytes());// 释放资源, 关流fos.close();}}
这篇关于JAVA——实现字符流写数据的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!