com.sshtools.j2ssh.util
Class Base64.OutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by java.io.FilterOutputStream
          extended by com.sshtools.j2ssh.util.Base64.OutputStream
All Implemented Interfaces:
java.io.Closeable, java.io.Flushable
Enclosing class:
Base64

public static class Base64.OutputStream
extends java.io.FilterOutputStream


Field Summary
private  byte[] buffer
           
private  int bufferLength
           
private  boolean encode
           
private  int lineLength
           
private  int position
           
 
Fields inherited from class java.io.FilterOutputStream
out
 
Constructor Summary
Base64.OutputStream(java.io.OutputStream out)
           
Base64.OutputStream(java.io.OutputStream out, boolean encode)
           
 
Method Summary
 void close()
           
 void flush()
           
 void write(byte[] theBytes, int off, int len)
           
 void write(int theByte)
           
 
Methods inherited from class java.io.FilterOutputStream
write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

buffer

private byte[] buffer

encode

private boolean encode

bufferLength

private int bufferLength

lineLength

private int lineLength

position

private int position
Constructor Detail

Base64.OutputStream

public Base64.OutputStream(java.io.OutputStream out)

Base64.OutputStream

public Base64.OutputStream(java.io.OutputStream out,
                           boolean encode)
Method Detail

close

public void close()
           throws java.io.IOException
Specified by:
close in interface java.io.Closeable
Overrides:
close in class java.io.FilterOutputStream
Throws:
java.io.IOException

flush

public void flush()
           throws java.io.IOException
Specified by:
flush in interface java.io.Flushable
Overrides:
flush in class java.io.FilterOutputStream
Throws:
java.io.IOException

write

public void write(int theByte)
           throws java.io.IOException
Overrides:
write in class java.io.FilterOutputStream
Throws:
java.io.IOException

write

public void write(byte[] theBytes,
                  int off,
                  int len)
           throws java.io.IOException
Overrides:
write in class java.io.FilterOutputStream
Throws:
java.io.IOException