public class Base64 extends Object
| コンストラクタと説明 |
|---|
Base64() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
static byte[] |
decode(String string)
Decodes the supplied Base-64 encoded string.
|
static String |
encode(byte[] bytes)
Base-64 encodes the supplied block of data.
|
public static String encode(byte[] bytes)
bytes - The block of data that is to be Base-64 encoded.String containing the encoded data.public static byte[] decode(String string)
string - The Base-64 encoded string that is to be decoded.byte[] containing the decoded data block.Copyright © 2016. All rights reserved.