public class UrlBase64 extends Object
The purpose of UrlBase64 encoding is to provide a compact encoding of binary data that is safe for use as an URL parameter. Base64 encoding does not produce encoded values that are safe for use in URLs, since "/" can be interpreted as a path delimiter; "+" is the encoded form of a space; and "=" is used to separate a name from the corresponding value in an URL parameter.
Constructor and Description |
---|
UrlBase64() |
Modifier and Type | Method and Description |
---|---|
static byte[] |
decode(byte[] data)
Decode the URL safe base 64 encoded input data - white space will be ignored.
|
static int |
decode(byte[] data,
OutputStream out)
decode the URL safe base 64 encoded byte data writing it to the given output stream,
whitespace characters will be ignored.
|
static byte[] |
decode(String data)
decode the URL safe base 64 encoded String data - whitespace will be ignored.
|
static int |
decode(String data,
OutputStream out)
Decode the URL safe base 64 encoded String data writing it to the given output stream,
whitespace characters will be ignored.
|
static byte[] |
encode(byte[] data)
Encode the input data producing a URL safe base 64 encoded byte array.
|
static int |
encode(byte[] data,
OutputStream out)
Encode the byte data writing it to the given output stream.
|
public static byte[] encode(byte[] data)
public static int encode(byte[] data, OutputStream out) throws IOException
IOException
public static byte[] decode(byte[] data)
public static int decode(byte[] data, OutputStream out) throws IOException
IOException
public static byte[] decode(String data)
public static int decode(String data, OutputStream out) throws IOException
IOException
Copyright © 2015. All rights reserved.