On this page
Interface FileObject
- All Known Subinterfaces:
-
JavaFileObject
- All Known Implementing Classes:
ForwardingFileObject
,ForwardingJavaFileObject
,SimpleJavaFileObject
public interface FileObject
All methods in this interface might throw a SecurityException if a security exception occurs.
Unless explicitly allowed, all methods in this interface might throw a NullPointerException if given a null
argument.
- Since:
- 1.6
Method Summary
Modifier and Type | Method | Description |
---|---|---|
boolean |
delete() |
Deletes this file object.
|
CharSequence |
getCharContent |
Returns the character content of this file object, if available.
|
long |
getLastModified() |
Returns the time this file object was last modified.
|
String |
getName() |
Returns a user-friendly name for this file object.
|
InputStream |
openInputStream() |
Returns an InputStream for this file object.
|
OutputStream |
openOutputStream() |
Returns an OutputStream for this file object.
|
Reader |
openReader |
Returns a reader for this object.
|
Writer |
openWriter() |
Returns a Writer for this file object.
|
URI |
toUri() |
Returns a URI identifying this file object.
|
Method Details
toUri
URI toUri()
- Returns:
- a URI
getName
String getName()
"BobsApp\Test.java"
on the command line, this method should return "BobsApp\Test.java"
whereas the toUri method might return file:///C:/Documents%20and%20Settings/UncleBob/BobsApp/Test.java
.
- Returns:
- a user-friendly name
openInputStream
InputStream openInputStream() throws IOException
- Returns:
- an InputStream
- Throws:
IllegalStateException
- if this file object was opened for writing and does not support readingUnsupportedOperationException
- if this kind of file object does not support byte accessIOException
- if an I/O error occurred
openOutputStream
OutputStream openOutputStream() throws IOException
- Returns:
- an OutputStream
- Throws:
IllegalStateException
- if this file object was opened for reading and does not support writingUnsupportedOperationException
- if this kind of file object does not support byte accessIOException
- if an I/O error occurred
openReader
Reader openReader(boolean ignoreEncodingErrors) throws IOException
ignoreEncodingErrors
is true.
- Parameters:
ignoreEncodingErrors
- ignore encoding errors if true- Returns:
- a Reader
- Throws:
IllegalStateException
- if this file object was opened for writing and does not support readingUnsupportedOperationException
- if this kind of file object does not support character accessIOException
- if an I/O error occurred
getCharContent
CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException
ignoreEncodingErrors
is true.
- Parameters:
ignoreEncodingErrors
- ignore encoding errors if true- Returns:
-
a CharSequence if available;
null
otherwise - Throws:
IllegalStateException
- if this file object was opened for writing and does not support readingUnsupportedOperationException
- if this kind of file object does not support character accessIOException
- if an I/O error occurred
openWriter
Writer openWriter() throws IOException
- Returns:
- a Writer
- Throws:
IllegalStateException
- if this file object was opened for reading and does not support writingUnsupportedOperationException
- if this kind of file object does not support character accessIOException
- if an I/O error occurred
getLastModified
long getLastModified()
- Returns:
- the time this file object was last modified; or 0 if the file object does not exist, if an I/O error occurred, or if the operation is not supported
delete
boolean delete()
- Returns:
- true if and only if this file object is successfully deleted; false otherwise
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.compiler/javax/tools/FileObject.html