Base64 Character encoder as specified in RFC1113. : Base64 Stream « File Input Output « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » File Input Output » Base64 StreamScreenshots 
Base64 Character encoder as specified in RFC1113.
   
/*

   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

 */

import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;

/**
 * This class implements a Base64 Character encoder as specified in RFC1113.
 * Unlike some other encoding schemes there is nothing in this encoding
 * that indicates where a buffer starts or ends.
 *
 * This means that the encoded text will simply start with the first line
 * of encoded text and end with the last line of encoded text.
 *
 @author <a href="mailto:deweese@apache.org">Thomas DeWeese</a>
 @author <a href="mailto:vincent.hardy@eng.sun.com">Vincent Hardy</a>
 @author      Chuck McManis
 @version $Id: Base64EncoderStream.java 501495 2007-01-30 18:00:36Z dvholten $
 */
public class Base64EncoderStream extends OutputStream {

    /** This array maps the 6 bit values to their characters */
    private static final byte[] pem_array = {
    //   0   1   2   3   4   5   6   7
        'A','B','C','D','E','F','G','H'// 0
        'I','J','K','L','M','N','O','P'// 1
        'Q','R','S','T','U','V','W','X'// 2
        'Y','Z','a','b','c','d','e','f'// 3
        'g','h','i','j','k','l','m','n'// 4
        'o','p','q','r','s','t','u','v'// 5
        'w','x','y','z','0','1','2','3'// 6
        '4','5','6','7','8','9','+','/'  // 7
    };

    byte [] atom = new byte[3];
    int     atomLen = 0;
    byte [] encodeBuf = new byte[4];
    int     lineLen = 0;

    PrintStream  out;
    boolean closeOutOnClose;

    public Base64EncoderStream(OutputStream out) {
        this.out = new PrintStream(out);
        closeOutOnClose = true;
    }

    public Base64EncoderStream(OutputStream out, boolean closeOutOnClose) {
        this.out = new PrintStream(out);
        this.closeOutOnClose = closeOutOnClose;
    }

    public void close () throws IOException {
        if (out != null) {
            encodeAtom();
            out.flush();
            if (closeOutOnClose)
                out.close();
            out=null;
        }
    }

    /**
     * This can't really flush out output since that may generate
     * '=' chars which would indicate the end of the stream.
     * Instead we flush out.  You can only be sure all output is
     * writen by closing this stream.
     */
    public void flush() throws IOException {
        out.flush();
    }

    public void write(int bthrows IOException {
        atom[atomLen++(byte)b;
        if (atomLen == 3)
            encodeAtom();
    }

    public void write(byte []datathrows IOException {
        encodeFromArray(data, 0, data.length);
    }

    public void write(byte [] data, int off, int lenthrows IOException {
        encodeFromArray(data, off, len);
    }

    /**
     * enocodeAtom - Take three bytes of input and encode it as 4
     * printable characters. Note that if the length in len is less
     * than three is encodes either one or two '=' signs to indicate
     * padding characters.
     */
    void encodeAtom() throws IOException {
        byte a, b, c;

        switch (atomLen) {
        case 0return;
        case 1:
            a = atom[0];
            encodeBuf[0= pem_array[((a >>> 20x3F)];
            encodeBuf[1= pem_array[((a <<  40x30)];
            encodeBuf[2= encodeBuf[3'=';
            break;
        case 2:
            a = atom[0];
            b = atom[1];
            encodeBuf[0= pem_array[((a >>> 20x3F)];
            encodeBuf[1= pem_array[(((a << 40x30((b >>> 40x0F))];
            encodeBuf[2= pem_array[((b  << 20x3C)];
            encodeBuf[3'=';
            break;
        default:
            a = atom[0];
            b = atom[1];
            c = atom[2];
            encodeBuf[0= pem_array[((a >>> 20x3F)];
            encodeBuf[1= pem_array[(((a << 40x30((b >>> 40x0F))];
            encodeBuf[2= pem_array[(((b << 20x3C((c >>> 60x03))];
            encodeBuf[3= pem_array[c & 0x3F];
        }
        if (lineLen == 64) {
            out.println();
            lineLen = 0;
        }
        out.write(encodeBuf);

        lineLen += 4;
        atomLen = 0;
    }

    /**
     * enocodeAtom - Take three bytes of input and encode it as 4
     * printable characters. Note that if the length in len is less
     * than three is encodes either one or two '=' signs to indicate
     * padding characters.
     */
    void encodeFromArray(byte[] data, int offset, int len)
        throws IOException{
        byte a, b, c;
        if (len == 0)
            return;

        // System.out.println("atomLen: " + atomLen +
        //                    " len: " + len +
        //                    " offset:  " + offset);

        if (atomLen != 0) {
            switch(atomLen) {
            case 1:
                atom[1= data[offset++]; len--; atomLen++;
                if (len == 0return;
                atom[2= data[offset++]; len--; atomLen++;
                break;
            case 2:
                atom[2= data[offset++]; len--; atomLen++;
                break;
            default:
            }
            encodeAtom();
        }

        while (len >=3) {
            a = data[offset++];
            b = data[offset++];
            c = data[offset++];

            encodeBuf[0= pem_array[((a >>> 20x3F)];
            encodeBuf[1= pem_array[(((a << 40x30((b >>> 40x0F))];
            encodeBuf[2= pem_array[(((b << 20x3C((c >>> 60x03))];
            encodeBuf[3= pem_array[c & 0x3F];
            out.write(encodeBuf);

            lineLen += 4;
            if (lineLen == 64) {
                out.println();
                lineLen = 0;
            }

            len -=3;
        }

        switch (len) {
        case 1:
            atom[0= data[offset];
            break;
        case 2:
            atom[0= data[offset];
            atom[1= data[offset+1];
            break;
        default:
        }
        atomLen = len;
    }



}

   
    
    
  
Related examples in the same category
1. BASE64 Decoder Stream
2. BASE64 Encoder Stream from Sun Microsystems
3. Base64 Character decoder as specified in RFC1113.
4. Performs Base-64 decoding on an underlying stream.
5. Class encodes the bytes written to the OutPutStream to a Base64 encoded string.
6. BASE64 Decoder Stream from Sun Microsystems
7. BASE64 Encoder Stream
8. Decode a BASE64 encoded input stream to some output stream
9. Hex dump
10. Dumps data in hexadecimal format
11. Apply a ASCII Hex encoding to the stream
12. Base64 Codec
13. Base64 encoding from DbUnit.org
14. Base64 provides Base64 encoding/decoding of strings and streams
15. Base64 - encode/decode data using the Base64 encoding scheme
16. Base64 from Eric Glass jcifs at samba dot org
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.