演示如何使用Java BufferedOutputStream类写文件

2018-07-20    来源:open-open

容器云强势上线!快速搭建集群,上万Linux镜像随意使用
下面代码演示如何使用BufferedOutputStream类写文件。

使用BufferedOutputStream类写文件,需要先将字符串转换为字节数组,然后再写入。

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

/**
*
* @author outofmemory.cn
*/
public class Main {

/**
* Prints some data to a file
*/
public void writeToFile(String filename) {

BufferedOutputStream bufferedOutput = null;

try {

//Construct the BufferedOutputStream object
bufferedOutput = new BufferedOutputStream(new FileOutputStream(filename));

//Start writing to the output stream
bufferedOutput.write("Line one".getBytes());
bufferedOutput.write("\n".getBytes()); //new line, you might want to use \r\n if you're on Windows
bufferedOutput.write("Line two".getBytes());
bufferedOutput.write("\n".getBytes());

//prints the character that has the decimal value of 65
bufferedOutput.write(65);

} catch (FileNotFoundException ex) {
ex.printStackTrace();
} catch (IOException ex) {
ex.printStackTrace();
} finally {
//Close the BufferedOutputStream
try {
if (bufferedOutput != null) {
bufferedOutput.flush();
bufferedOutput.close();
}
} catch (IOException ex) {
ex.printStackTrace();
}
}
}

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
new Main().writeToFile("myFile.txt");
}
}


标签: 代码

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点!
本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。

上一篇:Android中实现图片倒影的代码

下一篇:获取Android activity上所有的控件