org.apache.geronimo.mail.util
Class QuotedPrintable

java.lang.Object
  extended by org.apache.geronimo.mail.util.QuotedPrintable

public class QuotedPrintable
extends Object


Constructor Summary
QuotedPrintable()
           
 
Method Summary
static byte[] decode(byte[] data)
          decode the Q-P encoded input data.
static int decode(byte[] data, OutputStream out)
          decode the base Q-P encoded String data writing it to the given output stream, whitespace characters will be ignored.
static byte[] decode(String data)
          decode the UUEncided String data.
static int decode(String data, OutputStream out)
          decode the Q-P encoded encoded String data writing it to the given output stream.
static byte[] encode(byte[] data)
          encode the input data producing a Q-P encoded byte array.
static byte[] encode(byte[] data, int off, int length)
          encode the input data producing a Q-P encoded byte array.
static int encode(byte[] data, int off, int length, OutputStream out)
          Q-P encode the byte data writing it to the given output stream.
static int encode(byte[] data, OutputStream out)
          Q-P encode the byte data writing it to the given output stream.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QuotedPrintable

public QuotedPrintable()
Method Detail

encode

public static byte[] encode(byte[] data)
encode the input data producing a Q-P encoded byte array.

Returns:
a byte array containing the Q-P encoded data.

encode

public static byte[] encode(byte[] data,
                            int off,
                            int length)
encode the input data producing a Q-P encoded byte array.

Returns:
a byte array containing the Q-P encoded data.

encode

public static int encode(byte[] data,
                         OutputStream out)
                  throws IOException
Q-P encode the byte data writing it to the given output stream.

Returns:
the number of bytes produced.
Throws:
IOException

encode

public static int encode(byte[] data,
                         int off,
                         int length,
                         OutputStream out)
                  throws IOException
Q-P encode the byte data writing it to the given output stream.

Returns:
the number of bytes produced.
Throws:
IOException

decode

public static byte[] decode(byte[] data)
decode the Q-P encoded input data. It is assumed the input data is valid.

Returns:
a byte array representing the decoded data.

decode

public static byte[] decode(String data)
decode the UUEncided String data.

Returns:
a byte array representing the decoded data.

decode

public static int decode(String data,
                         OutputStream out)
                  throws IOException
decode the Q-P encoded encoded String data writing it to the given output stream.

Returns:
the number of bytes produced.
Throws:
IOException

decode

public static int decode(byte[] data,
                         OutputStream out)
                  throws IOException
decode the base Q-P encoded String data writing it to the given output stream, whitespace characters will be ignored.

Parameters:
data - The array data to decode.
out - The output stream for the data.
Returns:
the number of bytes produced.
Throws:
IOException


Copyright © 2003-2009 The Apache Software Foundation. All Rights Reserved.