• writeContent()
    • 语法
    • 类别
    • 描述
    • 参数
    • 返回值
    • 错误
    • 示例

    writeContent()

    语法

    File.writeContent( <fileContent> )

    类别

    File

    描述

    将 fileContent 对象中的二进制内容写入文件中。

    参数

    参数名参数类型默认值描述是否必填
    fileContentfileContent 对象—-往文件中写入的 fileContent 的二进制内容

    返回值

    无返回值。

    错误

    如果出错则抛异常,并输出错误信息,可以通过getLastErrMsg()获取错误信息或通过getLastError()获取错误码。关于错误处理可以参考常见错误处理指南。

    常见错误可参考错误码。

    示例

    • 打开一个二进制文件,获取文件描述符;
    1. > var file = new File( "/opt/sequoiadb/file.dump" )
    • 读取二进制文件的内容并存入 fileContent 对象中;
    1. > var content = file.readContent()
    2. > content instanceof FileContent
    3. true
    • 往文件中写入 fileContent 对象中的二进制内容。
    1. > var file2 = new File( "/opt/sequoiadb/file2.dump" )
    2. > file2.writeContent( content )