@Internal public class LocalDataOutputStream extends FSDataOutputStream
LocalDataOutputStream class is a wrapper class for a data
output stream to the local file system.| Constructor and Description |
|---|
LocalDataOutputStream(File file)
Constructs a new
LocalDataOutputStream object from a given File object. |
| Modifier and Type | Method and Description |
|---|---|
void |
close() |
void |
flush() |
void |
sync() |
void |
write(byte[] b,
int off,
int len) |
void |
write(int b) |
writepublic LocalDataOutputStream(File file) throws IOException
LocalDataOutputStream object from a given File object.file - the File object the data stream is read fromIOException - thrown if the data output stream cannot be createdpublic void write(int b)
throws IOException
write in class OutputStreamIOExceptionpublic void write(byte[] b,
int off,
int len)
throws IOException
write in class OutputStreamIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class OutputStreamIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class FSDataOutputStreamIOExceptionpublic void sync()
throws IOException
sync in class FSDataOutputStreamIOExceptionCopyright © 2014–2016 The Apache Software Foundation. All rights reserved.