Java FileOutputStream类简介说明

java-教程王 Java教程 发布时间:2021-11-30 10:35:44 阅读数:1575 1
下文讲述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();
    }
}
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaCourse/202111/1940.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者