| Package | Description |
|---|---|
| java.io |
Back 2 Browser Bytecode Translator
Copyright (C) 2012 Jaroslav Tulach
|
| Modifier and Type | Field and Description |
|---|---|
static FileDescriptor |
FileDescriptor.err
A handle to the standard error stream.
|
static FileDescriptor |
FileDescriptor.in
A handle to the standard input stream.
|
static FileDescriptor |
FileDescriptor.out
A handle to the standard output stream.
|
| Modifier and Type | Method and Description |
|---|---|
FileDescriptor |
FileOutputStream.getFD()
Returns the file descriptor associated with this stream.
|
FileDescriptor |
FileInputStream.getFD()
Returns the
FileDescriptor
object that represents the connection to
the actual file in the file system being
used by this FileInputStream. |
| Constructor and Description |
|---|
FileInputStream(FileDescriptor fdObj)
Creates a
FileInputStream by using the file descriptor
fdObj, which represents an existing connection to an
actual file in the file system. |
FileOutputStream(FileDescriptor fdObj)
Creates a file output stream to write to the specified file
descriptor, which represents an existing connection to an actual
file in the file system.
|
FileReader(FileDescriptor fd)
Creates a new FileReader, given the
FileDescriptor to read from.
|
FileWriter(FileDescriptor fd)
Constructs a FileWriter object associated with a file descriptor.
|
Copyright © 2021 API Design. All Rights Reserved.