2019.2

Table Of Contents
Integer that represents the number of elements in the new array.
newStringArray()
Function that returns a new string array.
newStringArray(size)
Returns a new String array of the specified number of elements.
size
Integer that represents the number of elements in the new array.
openBinaryReader()
Function that opens a file as a binary file for reading purposes. The function returns a
DataInputStream (see DataInputStream).
openBinaryReader(filename)
filename
String that represents the name of the file to open.
openBinaryWriter()
Function that opens a file as a binary file for writing purposes. The function returns a
DataOutputStream(see DataOutputStream).
openBinaryWriter(filename, append)
filename
String that represents the name of the file to open.
append
Boolean parameter that specifies whether the file pointer should initially be positioned at the
end of the existing file (append mode) or at the beginning of the file (overwrite mode).
openTextReader()
Function that opens a file as a text file for reading purposes. The function returns a
"TextReader" on the next page object. Please note that the temporary file must be closed at the
Page 444