Servertec   write( )
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Statements
Objects
Array
Cookie
Date
Enumeration
File
FileDescriptor
Hashtable
Internet
IO
JDBC
Number
Object
Properties
Random
Request
Response
SqlTypes
Stack
StreamTokenizer
String
StringBuffer
StringTokenizer
System
Vector

Wrappers
Servlet
Server Side
Preprocessor
Executable
Samples
Sales
Legal
Feedback

 

Writes the given value and returns the number of bytes written to the specified file output stream, piped output stream, print stream, data output stream, data output, output stream or random access file object.

Syntax

    write( outputstream , byte )
    outputstream.write( byte )
    write( outputstream , bytearray )
    outputstream.write( bytearray )
    write( outputstream , string )
    outputstream.write( string )
    write( outputstream , bytearray , offset , length )
    outputstream.write( bytearray , offset , length )
    write( outputstream , string , offset , length )
    outputstream.write( string , offset , length )

Parameters

    outputstream the file output stream, piped output stream, print stream, random access file , data output stream, data output or output stream object to write to.
    bytearray the byte array object write.
    string the string to write.
    offset a starting offset.
    length the number of bytes to write.

Returns

    nothing

Example

    fh.write( buf )
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:19:03 EST 1999