Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |
java.lang.Object | +----java.io.OutputStream | +----java.io.FileOutputStream
File
or to a FileDescriptor
. What files
are available or may be created depends on the host environment.
Constructor Summary | |
FileOutputStream(String name)
|
|
FileOutputStream(String name,
boolean append)
|
|
FileOutputStream(File file)
File object.
|
|
FileOutputStream(FileDescriptor fdObj)
|
Method Summary | |
void | close()
|
void | finalize()
close method of this file output stream is
called when there are no more references to this stream.
|
FileDescriptor | getFD()
|
void | write(int b)
|
void | write(byte[] b)
b.length bytes from the specified byte array
to this file output stream.
|
void | write(byte[] b,
int off,
int len)
len bytes from the specified byte array
starting at offset off to this file output stream.
|
Methods inherited from class java.io.OutputStream |
close, flush, write, write, write |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public FileOutputStream(String name) throws IOException
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 cannot be opened, a FileNotFoundException
is thrown.
name
- the system-dependent filename.
checkWrite
method is called with the name
argument to see if the application is allowed write access
to the file.public FileOutputStream(String name, boolean append) throws IOException
name
- the system dependent file name
public FileOutputStream(File file) throws IOException
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 cannot be opened, a FileNotFoundException
is thrown.
file
- the file to be opened for writing.
checkWrite
method is called with the pathname
of the File
argument to see if the
application is allowed write access to the file. This may
result in a security exception.public FileOutputStream(FileDescriptor fdObj)
First, if there is a security manager, its checkWrite
method is called with the file descriptor fdObj
argument as its argument.
fdObj
- the file descriptor to be opened for writing.
checkWrite
method is called with the file
descriptor to see if the application is allowed to write
to the specified file descriptor.Method Detail |
public void write(int b) throws IOException
write
method of OutputStream
.
b
- the byte to be written.
public void write(byte[] b) throws IOException
b.length
bytes from the specified byte array
to this file output stream.
b
- the data.
public void write(byte[] b, int off, int len) throws IOException
len
bytes from the specified byte array
starting at offset off
to this file output stream.
b
- the data.
off
- the start offset in the data.
len
- the number of bytes to write.
public void close() throws IOException
public final FileDescriptor getFD() throws IOException
FileDescriptor
object that represents
the connection to the file in the file system being used
by this FileOutputStream
object.protected void finalize() throws IOException
close
method of this file output stream is
called when there are no more references to this stream.Contents | Package | Class | Tree | Deprecated | Index | Help | Java 1.2 Beta 3 | ||
PREV | NEXT | SHOW LISTS | HIDE LISTS |