Java FileOutputStream类简介说明
下文讲述FileOutputStream类的简介说明
例
FileOutputStream类的功能简介: 它是文件字节输出流 可将内存中的数据写入到硬盘的文件中 常用于向文件写入数据
FileOutputStream类构造函数
public FileOutputStream(String name) public FileOutputStream(File file) public FileOutputStream(File file,boolean append) public FileOutputStream(FileDescriptor fdObj) 参数说明 file:要打开以进行写入的文件 append:是否往文件中添加数据
FileOutputStream类的方法简介说明
将指定的字节写入管道输出流 |
public void write(int b) |
将指定的字节写入此字节数组输出流,此方法继承于OutputStream,可以参考OutputStream.write |
public void write(byte[] b,int off,int len) |
返回与此文件输出流关联的唯一FileChannel对象。 |
public FileChannel getChannel() |
返回与此流关联的文件描述符。 |
public final FileDescriptor getFD() |
关闭输出流 |
public void close() |
public static void main(String[] args) { OutputStream fs = null; try { StringBuffer buf = new StringBuffer(); buf.append("这是一个java教程站").append("\r\n"); buf.append("我的网址是java265.com").append("\r\n"); fs = new FileOutputStream(new File("D:\\java265.txt"), true) fs.write(buf.toString().getBytes()) } catch(Exception e) {} finally { fs.close(); } }
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。