| 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use FileNotFoundException | |
| java.io | Provides for system input and output through data streams, serialization and the file system. | 
| javax.imageio.stream | A package of the Java Image I/O API dealing with low-level I/O from files and streams. | 
| Uses of FileNotFoundException in java.io | 
| Constructors in java.io that throw FileNotFoundException | |
FileReader(String fileName)
Creates a new FileReader, given the name of the file to read from.  | 
|
FileReader(File file)
Creates a new FileReader, given the File to read from.  | 
|
RandomAccessFile(String name,
                 String mode)
Creates a random access file stream to read from, and optionally to write to, a file with the specified name.  | 
|
RandomAccessFile(File file,
                 String mode)
Creates a random access file stream to read from, and optionally to write to, the file specified by the File argument. | 
|
FileOutputStream(String name)
Creates an output file stream to write to the file with the specified name.  | 
|
FileOutputStream(String name,
                 boolean append)
Creates an output file stream to write to the file with the specified name. | 
|
FileOutputStream(File file)
Creates a file output stream to write to the file represented by the specified File object. | 
|
FileOutputStream(File file,
                 boolean append)
Creates a file output stream to write to the file represented by the specified File object. | 
|
FileInputStream(String name)
Creates a FileInputStream by
 opening a connection to an actual file,
 the file named by the path name name
 in the file system. | 
|
FileInputStream(File file)
Creates a FileInputStream by
 opening a connection to an actual file,
 the file named by the File
 object file in the file system. | 
|
| Uses of FileNotFoundException in javax.imageio.stream | 
| Constructors in javax.imageio.stream that throw FileNotFoundException | |
FileImageOutputStream(File f)
Constructs a FileImageOutputStream that will write
 to a given File. | 
|
FileImageInputStream(File f)
Constructs a FileImageInputStream that will read
 from a given File. | 
|
  | 
JavaTM 2 Platform Std. Ed. v1.4.2  | 
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.