当前位置:  技术问答>java相关

怎么在文件末尾追加内容?

    来源: 互联网  发布时间:2015-09-20

    本文导语:  怎么在文件末尾追加内容? | FileOutputStream public FileOutputStream(File file)                  throws FileNotFoundException        Creates a file output stream to write to the file represented by the specified F...

怎么在文件末尾追加内容?

|

FileOutputStream

public FileOutputStream(File file)
                 throws FileNotFoundException

       Creates a file output stream to write to the file represented by the specified File object. A
       new FileDescriptor object is created to represent this file connection. 

       First, if there is a security manager, its checkWrite method is called with the path
       represented by the file argument as its argument. 

       If the file exists but is a directory rather than a regular file, does not exist but cannot
       be created, or cannot be opened for any other reason then a FileNotFoundException is thrown. 

Parameters:
       file - the file to be opened for writing. 
Throws: 
       FileNotFoundException - if the file exists but is a directory rather than a regular file,
       does not exist but cannot be created, or cannot be opened for any other reason 
       SecurityException - if a security manager exists and its checkWrite method denies write
       access to the file.
See Also:
       File.getPath(), SecurityException, SecurityManager.checkWrite(java.lang.String)



FileOutputStream

public FileOutputStream(File file,
                        boolean append)
                 throws FileNotFoundException

       Creates a file output stream to write to the file represented by the specified File object.
       If the second argument is true, then bytes will be written to the end of the file rather than
       the beginning. A new FileDescriptor object is created to represent this file connection. 

       First, if there is a security manager, its checkWrite method is called with the path
       represented by the file argument as its argument. 

       If the file exists but is a directory rather than a regular file, does not exist but cannot
       be created, or cannot be opened for any other reason then a FileNotFoundException is thrown. 

Parameters:
       file - the file to be opened for writing.
       append - if true, then bytes will be written to the end of the file rather than the beginning
Throws: 
       FileNotFoundException - if the file exists but is a directory rather than a regular file,
       does not exist but cannot be created, or cannot be opened for any other reason 
       SecurityException - if a security manager exists and its checkWrite method denies write
       access to the file.
Since:
       1.4 
See Also:
       File.getPath(), SecurityException, SecurityManager.checkWrite(java.lang.String)

FileOutputStream

public FileOutputStream(String name,
                        boolean append)
                 throws FileNotFoundException

       Creates an output file stream to write to the file with the specified name. If the second
       argument is true, then bytes will be written to the end of the file rather than the
       beginning. A new FileDescriptor object is created to represent this file connection. 

       First, if there is a security manager, its checkWrite method is called with name as its
       argument. 

       If the file exists but is a directory rather than a regular file, does not exist but cannot
       be created, or cannot be opened for any other reason then a FileNotFoundException is thrown. 

Parameters:
       name - the system-dependent file name
       append - if true, then bytes will be written to the end of the file rather than the beginning
Throws: 
       FileNotFoundException - if the file exists but is a directory rather than a regular file,
       does not exist but cannot be created, or cannot be opened for any other reason. 
       SecurityException - if a security manager exists and its checkWrite method denies write
       access to the file.
Since:
       JDK1.1 
See Also:
       SecurityManager.checkWrite(java.lang.String)

    
 
 

您可能感兴趣的文章:

  • 文本文件的末尾一定有''吗?
  • 请问java怎样在文件末尾追加内容?
  • 通过/dev/sda文件取硬盘末尾数据的问题
  • java向文件末尾添加内容示例分享
  • 请教:怎么样往用户目录中的“.bashrc”文件末尾添加如下内容??(在线等)
  • 怎样写一个shell,可以查看一个文件的内容,并且有翻页的内容,并可以打印的 iis7站长之家
  • -- 我想在linux下的一个文本文件中从1到5884行的末尾都加个逗号 --
  • shell在文件行末尾加字符过滤空行和注释的问题
  • 怎么用DOS命令将a文件追加到b文件?
  • 急!!求教linux命令的使用:统计出/bin目录中文件的个数,追加到文件filea的结尾
  • 怎样在文本文件中追加内容?
  • 请问文件内容追加用什么方法?
  • 那位知道在一个.jar文件中追加一个.class文件用什么参数?
  • 如何定位到文件的最后,进行文件追加
  • jsp文件操作之追加篇
  • 高分请教:追加写文件
  • VC++在TXT文件指定位置追加内容的方法
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java 中能不能在文件前面添加些内容?不覆盖原内容!
  • 怎样写一个shell,可以查看一个文件的内容,并且有翻页的内容,并可以打印的
  • Java中,给已存在的文件添加内容,但不覆盖文件原有内容,该如何操作
  • linux如何合并两个文件(将文件A内容复制到文件B的后面)
  • 菜问题:请问如何根据文件中的一段内容查找文件路径和文件名称,在线等候
  • linux如何用命令清空文件的内容但不删除文件
  • linux 下如何修改文件名,文件内容
  • 通过shell解析文件,并根据解析内容生成新的文件。
  • 求助 如何遍历一个文件的内容?并且将结果中 第一列名字相同的内容的各个字段做相加工作
  • 我想按照文件名合并一些文件内容,如何操作
  • 合并一个文件夹下多个文件内容的单行shell命令
  • 求助,在Linux下当文件夹大小超过1G时,删除文件夹内容
  • sed用法:怎么从一文件a中读取一行,添加些内容再写入另一文件b
  • 怎样从JAR文件中提取class文件??(无内容)
  • 如何 列出目录下包含指定内容的文件的文件名?
  • 如何从文件的指定位置把文件内容读入字符型数组?
  • 请问如何动态命名重定向输出文件名,并将内容输出到该文件?
  • php读取文件内容并清空文件
  • PHP读取文件内容后清空文件示例代码
  • 请问如何在桌面上新建一个文件(文件内容为执行一条命令,并显示一条相应的提示)
  • C++ I/O 成员 eof():如果处于文件结尾处则返回true
  • Shell脚本如何递归现实一个文件夹中的文件(文件夹中含有文件夹)
  • WinDows8最新版文件夹加密
  • 求命令:什么命令可以把文件夹下所有的文件按修改时间先后排出来,包括子文件夹里的文件。
  • sharepoint 2010 使用STSNavigate函数实现文件下载举例
  • [提问]Linux下如何把多个.a文件编译一个.so文件,或者把多个.so文件编译成一个.so文件
  • python异常信息堆栈输出到日志文件
  • 请问:proc中的头文件中能包含头文件吗?(感觉如果头文件中包含头文件的话,在链接时就会有错误啊)
  • Centos6下安装Shell下文件上传下载rz,sz命令
  • 我要实现当进程打开文件时,根据文件名判断是否符合要求,符合后处理文件,再把文件返回给进程,怎么实现啊
  • 在MyEclipse中设开启xml文件自动提示和自动完成功能


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3