| java.lang.Object org.apache.tools.ant.util.UUEncoder
UUEncoder | public class UUEncoder (Code) | | UUEncoding of an input stream placed into an outputstream.
This class is meant to be a drop in replacement for
sun.misc.UUEncoder, which was previously used by Ant.
The uuencode algorithm code has been copied from the
geronimo project.
|
Method Summary | |
public void | encode(InputStream is, OutputStream out) UUEncode bytes from the input stream, and write them as text characters
to the output stream. |
DEFAULT_MODE | final protected static int DEFAULT_MODE(Code) | | |
UUEncoder | public UUEncoder(String name)(Code) | | Constructor specifing a name for the encoded buffer, begin
line will be:
begin 644 [NAME]
Parameters: name - the name of the encoded buffer. |
encode | public void encode(InputStream is, OutputStream out) throws IOException(Code) | | UUEncode bytes from the input stream, and write them as text characters
to the output stream. This method will run until it exhausts the
input stream.
Parameters: is - the input stream. Parameters: out - the output stream. throws: IOException - if there is an error. |
|
|