public class Base64
{
private static final char alphabet[] =
{
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H',
'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P',
'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f',
'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',
'o', 'p', 'q', 'r', 's', 't', 'u', 'v',
'w', 'x', 'y', 'z', '0', '1', '2', '3',
'4', '5', '6', '7', '8', '9', '+', '/'
};
private static final int inverse[] =
{
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 62, 64, 64, 64, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 64, 64, 64, 64, 64, 64,
64, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 64, 64, 64, 64, 64,
64, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64
};
public static class Decoder
{
private int filled = 0;
private byte data[];
private int count = 0;
private int work[] = {0, 0, 0, 0};
public Decoder()
{
data = new byte[256];
}
public void decode(String encoded)
{
int estimate = 1 + encoded.length() * 3 / 4;
if (filled + estimate > data.length)
{
int length = data.length * 2;
while (length < filled + estimate)
{
length *= 2;
}
byte[] newdata = new byte[length];
System.arraycopy(data, 0, newdata, 0, filled);
data = newdata;
}
for (int i = 0; i < encoded.length(); ++i)
{
char c = encoded.charAt(i);
if (c == '=')
work[count++] = -1;
else if (inverse[c] != 64)
work[count++] = inverse[c];
else
continue;
if (count == 4)
{
count = 0;
data[filled++] = (byte)((work[0] << 2) | ((work[1] & 0xff) >> 4));
if (work[2] == -1)
break;
data[filled++] = (byte)((work[1] << 4) | ((work[2] & 0xff) >> 2));
if (work[3] == -1)
break;
data[filled++] = (byte)((work[2] << 6) | work[3]);
}
}
}
public byte[] drain()
{
byte[] r = new byte[filled];
System.arraycopy(data, 0, r, 0, filled);
filled = 0;
return r;
}
public byte[] flush() throws IllegalStateException
{
if (count > 0)
throw new IllegalStateException("a partial block (" + count + " of 4 bytes) was dropped, decoded data is probably truncated!");
return drain();
}
public void reset()
{
count = 0;
filled = 0;
}
}
public static class Encoder
{
private int work[] = {0, 0, 0};
private int count = 0;
private int line = 0;
private StringBuffer output;
public Encoder(int size)
{
output = new StringBuffer(size);
}
private void encodeBlock()
{
output.append(alphabet[(work[0] & 0xFF) >> 2]);
output.append(alphabet[((work[0] & 0x03) << 4) | ((work[1] & 0xF0) >> 4)]);
if (count > 1)
output.append(alphabet[((work[1] & 0x0F) << 2) | ((work[2] & 0xC0) >> 6)]);
else
output.append('=');
if (count > 2)
output.append(alphabet[work[2] & 0x3F]);
else
output.append('=');
if ((line += 4) == 76)
{
output.append('\n');
line = 0;
}
}
public void encode(byte[] data)
{
encode(data, 0, data.length);
}
public void encode(byte[] data, int offset, int length)
{
int plainIndex = offset;
while (plainIndex < (offset + length))
{
work[count] = data[plainIndex];
count++;
if (count == work.length || ((offset + length) - plainIndex) == 1)
{
encodeBlock();
count = 0;
work[0] = 0;
work[1] = 0;
work[2] = 0;
}
plainIndex++;
}
}
public String drain()
{
String r = output.toString();
output.setLength(0);
return r;
}
public String flush()
{
if (count > 0)
encodeBlock();
String r = drain();
count = 0;
line = 0;
work[0] = 0;
work[1] = 0;
work[2] = 0;
return r;
}
}
public static void main(String[] args)
{
boolean printData = false;
int randomLimit = 500;
byte raw [] = new byte[(int)(Math.random() * randomLimit)];
for (int i = 0; i < raw.length; ++i)
{
if ((i % 1024) < 256)
raw[i] = (byte)(i % 1024);
else
raw[i] = (byte)((int)(Math.random() * 255) - 128);
}
Base64.Encoder encoder = new Base64.Encoder(100);
encoder.encode(raw);
String encoded = encoder.drain();
Base64.Decoder decoder = new Base64.Decoder();
decoder.decode(encoded);
byte check[] = decoder.flush();
String mesg = "Success!";
if (check.length != raw.length)
{
mesg = "***** length mismatch!";
}
else
{
for (int i = 0; i < check.length; ++i)
{
if (check[i] != raw[i])
{
mesg = "***** data mismatch!";
break;
}
}
}
System.out.println(mesg);
if (printData)
{
System.out.println("Decoded: " + new String(raw));
System.out.println("Encoded: " + encoded);
System.out.println("Decoded: " + new String(check));
}
}
}
分享到:
相关推荐
标题中的"pb9_base64_pb调用base64.dll_PB9base64_Base64.dll_glass8y6_pbbase64"涉及到的是PowerBuilder 9(简称PB9)中关于Base64编码的实现。Base64是一种用于在网络上传输二进制数据的编码方式,它将二进制数据...
在这个特定的场景中,我们关注的是如何在LabVIEW中处理图片,包括图片的缩放、Base64编码和解码。 1. **图片缩放**: 在LabVIEW中,你可以使用图像处理库来实现图片的缩放功能。这个库提供了各种图像操作函数,...
在“Base64.zip_labview base64”这个压缩包中,包含了一个名为“Base64.vi”的虚拟仪器(VI)。这个VI是用LabVIEW编写的,目的就是提供一个纯LabVIEW环境下的Base64编码解决方案。下面我们将详细探讨如何在LabVIEW...
Base64是一种在互联网上广泛使用的编码方式,它将任意二进制数据转换为可打印的ASCII字符,以便在网络传输中不受限制。这种编码方法基于一个64字符的字母数字表,包括大小写字母、数字以及"+"和"/",末尾可能带有...
Base64编码是一种常见的数据编码方式,主要用于在不支持二进制传输的环境中传递二进制数据。它将任意的二进制数据转化为ASCII字符序列,这样就可以在文本格式的邮件、网页源代码等场景中方便地使用。Base64编码会将3...
在Excel中使用VBA(Visual Basic for Applications)解码BASE64编码的图片是一项常见的编程任务,特别是当你需要处理从网络或数据库中获取的BASE64格式的图像数据时。BASE64是一种用于将二进制数据转换为可打印ASCII...
在Android开发中,有时我们需要将图片转换为Base64编码的形式以便在网络传输或者存储时使用。Base64编码是一种常见的二进制数据转化为文本的方法,它通过使用64个可打印字符来表示原本的二进制数据,使得数据可以在...
这个“VB JPG转base64和base64转JPG.rar”压缩包文件包含的可能是两个VB程序,分别用于将JPG图片编码为Base64字符串和将Base64字符串解码回JPG图片。 首先,让我们深入了解一下Base64编码的原理。Base64编码将每3个...
Base64编码和解码库,支持API调用和COM调用,输入参数支持VB的字节数组Byte(),输出支持VB的字节数组Byte()和...Public Declare Sub DecodeFromVBStringEx Lib "Base64" (ByRef Dest() As Byte, ByRef Src As String)
sun.misc.BASE64Decoder 其中包括 Android Base64Jar包 以及Java源代码 sun.misc.BASE64Decoder 其中包括 Android Base64Jar包 以及Java源代码 sun.misc.BASE64Decoder 其中包括 Android Base64Jar包 以及...
在IT行业中,Base64是一种常见的数据编码方法,主要用于将二进制数据转换为ASCII字符串,以便在网络上传输或者存储。Base64Encoder和Base64Decoder是处理这种编码和解码过程的工具。本文将深入探讨这两个概念,以及...
Base64是一种在网络上传输和存储二进制数据时常用的数据编码方式,它将二进制数据转换为可打印的ASCII字符序列。在Java中,Base64编码主要用于处理包含二进制数据的字符串,例如图片、PDF文档或加密密钥等。Base64...
在Java中,`BASE64Encoder`和`BASE64Decoder`是两个核心类,分别用于对数据进行BASE64编码和解码。 `BASE64Encoder`类: 这个类在Java SDK中位于`javax.crypto`包下,主要负责将字节序列(byte array)转换为BASE...
在IT领域,Base64是一种广泛使用的编码方式,主要用于将二进制数据转换为可打印的ASCII字符,以便在网络上传输或存储。标题中的"BASE64Encoder.jar"表明这是一个Java应用程序,它提供了Base64编码的功能。描述中提到...
Base64是一种常见的数据编码方式,它将任意的二进制数据转换成可打印的ASCII字符串,以便在网络上传输或者存储。在JavaScript中,Base64编码和解码是经常用到的功能,尤其是在处理图像、JSON数据或者进行跨平台通信...
BASE64编码是一种常见的数据编码方式,特别是在网络通信和数据存储中广泛使用。它将任意二进制数据转换成可打印的ASCII字符序列,以便在不支持二进制传输的环境中进行传输。在这个"BASE64Encoder.zip"压缩包中包含了...
Java Base64是一个用于处理Base64编码的库,它为Java开发者提供了便捷的方式来编码和解码Base64数据。Base64是一种在网络上传输二进制数据时常用的编码方式,因为HTTP、电子邮件等协议主要处理ASCII字符,而Base64...
在IT领域,Base64是一种常见的数据编码方法,主要用于在不支持二进制传输的环境中传递数据,如电子邮件系统。C#是微软开发的一种面向对象的编程语言,广泛应用于Windows应用开发,包括WinForms应用程序。在C# ...