public class Base64Engine extends Object
| Modifier and Type | Class and Description |
|---|---|
static class |
Base64Engine.EncodedOutputStream
Create an output stream that writes base64-encoded bytes to the supplied stream
|
static class |
Base64Engine.InputEncodeStream |
static class |
Base64Engine.OutputDecodeStream |
| Constructor and Description |
|---|
Base64Engine() |
| Modifier and Type | Method and Description |
|---|---|
static int |
decode(byte[] input,
int inOffset,
int length,
byte[] output,
int outOffset)
Decode an array of bytes into another array of bytes
return the number of output bytes
If output is null, just return the output byte count
|
static byte[] |
decode(String s) |
static char[] |
encode(byte[] input,
int inOffset,
int length) |
static int |
encode(byte[] input,
int inOffset,
int length,
byte[] output,
int outOffset)
Encode an array of bytes into another array of bytes
return the number of output bytes
If output is null, just return the output byte count
|
public static int decode(byte[] input,
int inOffset,
int length,
byte[] output,
int outOffset)
public static int encode(byte[] input,
int inOffset,
int length,
byte[] output,
int outOffset)
public static char[] encode(byte[] input,
int inOffset,
int length)
public static byte[] decode(String s)
Copyright © 2010 - 2020 Adobe. All Rights Reserved