类 Base64
- Basic
Uses "The Base64 Alphabet" as specified in Table 1 of RFC 4648 and RFC 2045 for encoding and decoding operation. The encoder does not add any line feed (line separator) character. The decoder rejects data that contains characters outside the base64 alphabet.
- URL and Filename safe
Uses the "URL and Filename safe Base64 Alphabet" as specified in Table 2 of RFC 4648 for encoding and decoding. The encoder does not add any line feed (line separator) character. The decoder rejects data that contains characters outside the base64 alphabet.
- MIME
Uses the "The Base64 Alphabet" as specified in Table 1 of RFC 2045 for encoding and decoding operation. The encoded output must be represented in lines of no more than 76 characters each and uses a carriage return
'\r'followed immediately by a linefeed'\n'as the line separator. No line separator is added to the end of the encoded output. All line separators or other characters not found in the base64 alphabet table are ignored in decoding operation.
Unless otherwise noted, passing a null argument to a
method of this class will cause a NullPointerException to be thrown.
- 从以下版本开始:
- 1.8
- 作者:
- Xueming Shen
-
嵌套类概要
嵌套类修饰符和类型类说明static classThis class implements a decoder for decoding byte data using the Base64 encoding scheme as specified in RFC 4648 and RFC 2045.static classThis class implements an encoder for encoding byte data using the Base64 encoding scheme as specified in RFC 4648 and RFC 2045. -
方法概要
修饰符和类型方法说明static Base64.DecoderReturns aBase64.Decoderthat decodes using the Basic type base64 encoding scheme.static Base64.EncoderReturns aBase64.Encoderthat encodes using the Basic type base64 encoding scheme.static Base64.DecoderReturns aBase64.Decoderthat decodes using the MIME type base64 decoding scheme.static Base64.EncoderReturns aBase64.Encoderthat encodes using the MIME type base64 encoding scheme.static Base64.EncodergetMimeEncoder(int lineLength, byte[] lineSeparator) Returns aBase64.Encoderthat encodes using the MIME type base64 encoding scheme with specified line length and line separators.static Base64.DecoderReturns aBase64.Decoderthat decodes using the URL and Filename safe type base64 encoding scheme.static Base64.EncoderReturns aBase64.Encoderthat encodes using the URL and Filename safe type base64 encoding scheme.
-
方法详细资料
-
getEncoder
Returns aBase64.Encoderthat encodes using the Basic type base64 encoding scheme.- 返回:
- A Base64 encoder.
-
getUrlEncoder
Returns aBase64.Encoderthat encodes using the URL and Filename safe type base64 encoding scheme.- 返回:
- A Base64 encoder.
-
getMimeEncoder
Returns aBase64.Encoderthat encodes using the MIME type base64 encoding scheme.- 返回:
- A Base64 encoder.
-
getMimeEncoder
Returns aBase64.Encoderthat encodes using the MIME type base64 encoding scheme with specified line length and line separators.- 参数:
lineLength- the length of each output line (rounded down to nearest multiple of 4). IflineLength <= 0the output will not be separated in lineslineSeparator- the line separator for each output line- 返回:
- A Base64 encoder.
- 抛出:
IllegalArgumentException- iflineSeparatorincludes any character of "The Base64 Alphabet" as specified in Table 1 of RFC 2045.
-
getDecoder
Returns aBase64.Decoderthat decodes using the Basic type base64 encoding scheme.- 返回:
- A Base64 decoder.
-
getUrlDecoder
Returns aBase64.Decoderthat decodes using the URL and Filename safe type base64 encoding scheme.- 返回:
- A Base64 decoder.
-
getMimeDecoder
Returns aBase64.Decoderthat decodes using the MIME type base64 decoding scheme.- 返回:
- A Base64 decoder.
-