|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||
java.lang.Objectcom.sun.syndication.io.impl.Base64
public class Base64
Encodes/decodes byte arrays and Strings into/from a base 64 String.
| コンストラクタの概要 | |
|---|---|
Base64()
|
|
| メソッドの概要 | |
|---|---|
static byte[] |
decode(byte[] eData)
Dencodes a com.sun.syndication.io.impl.Base64 byte array. |
static java.lang.String |
decode(java.lang.String s)
Decodes a base 64 String into a String. |
static byte[] |
encode(byte[] dData)
Encodes a byte array into a base 64 byte array. |
static java.lang.String |
encode(java.lang.String s)
Encodes a String into a base 64 String. |
static void |
main(java.lang.String[] args)
|
| クラス java.lang.Object から継承されたメソッド |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| コンストラクタの詳細 |
|---|
public Base64()
| メソッドの詳細 |
|---|
public static java.lang.String encode(java.lang.String s)
s - String to encode.
public static java.lang.String decode(java.lang.String s)
throws java.lang.IllegalArgumentException
s - String to decode.
java.lang.IllegalArgumentException - thrown if the given byte array was not valid com.sun.syndication.io.impl.Base64 encoding.public static byte[] encode(byte[] dData)
dData - byte array to encode.
public static byte[] decode(byte[] eData)
eData - byte array to decode.
java.lang.IllegalArgumentException - thrown if the given byte array was not valid com.sun.syndication.io.impl.Base64 encoding.
public static void main(java.lang.String[] args)
throws java.lang.Exception
java.lang.Exception
|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||