@Internal public class LocalDataInputStream extends FSDataInputStream
LocalDataInputStream
class is a wrapper class for a data input stream to the
local file system.Constructor and Description |
---|
LocalDataInputStream(File file)
Constructs a new
LocalDataInputStream object from a given File object. |
Modifier and Type | Method and Description |
---|---|
int |
available() |
void |
close() |
long |
getPos()
Gets the current position in the input stream.
|
int |
read() |
int |
read(byte[] buffer,
int offset,
int length) |
void |
seek(long desired)
Seek to the given offset from the start of the file.
|
long |
skip(long n) |
mark, markSupported, read, reset
public LocalDataInputStream(File file) throws IOException
LocalDataInputStream
object from a given File
object.file
- The File the data stream is read fromIOException
- Thrown if the data input stream cannot be created.public void seek(long desired) throws IOException
FSDataInputStream
seek
in class FSDataInputStream
desired
- the desired offsetIOException
- Thrown if an error occurred while seeking inside the input stream.public long getPos() throws IOException
FSDataInputStream
getPos
in class FSDataInputStream
IOException
- Thrown if an I/O error occurred in the underlying stream implementation
while accessing the stream's position.public int read() throws IOException
read
in class InputStream
IOException
public int read(@Nonnull byte[] buffer, int offset, int length) throws IOException
read
in class InputStream
IOException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class InputStream
IOException
public int available() throws IOException
available
in class InputStream
IOException
public long skip(long n) throws IOException
skip
in class InputStream
IOException
Copyright © 2014–2024 The Apache Software Foundation. All rights reserved.