Class Base64


  • public final class Base64
    extends java.lang.Object
    This class provides encode/decode for RFC 2045 Base64 as defined by RFC 2045, N. Freed and N. Borenstein. RFC 2045: Multipurpose Internet Mail Extensions (MIME) Part One: Format of Internet Message Bodies. Reference 1996 Available at: http://www.ietf.org/rfc/rfc2045.txt This class is used by XML Schema binary format validation This implementation does not encode/decode streaming data. You need the data that you will encode/decode already on a byte arrray.
    • Constructor Summary

      Constructors 
      Constructor Description
      Base64()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static byte[] decode​(byte[] base64Data)
      Decodes Base64 data into octects
      static byte[] encode​(byte[] binaryData)
      Encodes hex octects into Base64
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Base64

        public Base64()
    • Method Detail

      • encode

        public static byte[] encode​(byte[] binaryData)
        Encodes hex octects into Base64
        Parameters:
        binaryData - Array containing binaryData
        Returns:
        Encoded Base64 array
      • decode

        public static byte[] decode​(byte[] base64Data)
        Decodes Base64 data into octects
        Parameters:
        base64Data - Byte array containing Base64 data
        Returns:
        Array containind decoded data.