Class SeekableOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.batik.ext.awt.image.codec.util.SeekableOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
public class SeekableOutputStream extends java.io.OutputStreamAnOutputStreamwhich can seek to an arbitrary offset.- Version:
- $Id: SeekableOutputStream.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Field Summary
Fields Modifier and Type Field Description private java.io.RandomAccessFilefile
-
Constructor Summary
Constructors Constructor Description SeekableOutputStream(java.io.RandomAccessFile file)Constructs aSeekableOutputStreamfrom aRandomAccessFile.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidflush()InvokesgetFD().sync()on the underlyingRandomAccessFile.longgetFilePointer()voidseek(long pos)voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(int b)
-
-
-
Constructor Detail
-
SeekableOutputStream
public SeekableOutputStream(java.io.RandomAccessFile file)
Constructs aSeekableOutputStreamfrom aRandomAccessFile. Unless otherwise indicated, all method invocations are fowarded to the underlyingRandomAccessFile.- Parameters:
file- TheRandomAccessFileto which calls will be forwarded.- Throws:
java.lang.IllegalArgumentException- iffileisnull.
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException- Specified by:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b) throws java.io.IOException- Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException- Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOExceptionInvokesgetFD().sync()on the underlyingRandomAccessFile.- Specified by:
flushin interfacejava.io.Flushable- Overrides:
flushin classjava.io.OutputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.OutputStream- Throws:
java.io.IOException
-
getFilePointer
public long getFilePointer() throws java.io.IOException- Throws:
java.io.IOException
-
seek
public void seek(long pos) throws java.io.IOException- Throws:
java.io.IOException
-
-