小编给大家分享一下怎么用Java语言实现Base64编码,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
import java.io.*;
public class MIMEBase64 {
static String BaseTable[] = {
"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","+","/"
};
public static void encode(String filename, BufferedWriter out) {
try {
File f = new File(filename);
FileInputStream fin = new FileInputStream(filename);
// 读文件到BYTE数组
byte bytes[] = new byte[(int)(f.length())];
int n = fin.read(bytes);
if (n < 1) return; // 没有内容
byte buf[] = new byte[4]; // base64 字符数组
int n3byt = n / 3; // 3 bytes 组数
int nrest = n % 3; // 分组后剩余 bytes
int k = n3byt * 3; //
int linelength = 0; // 行长
int i = 0; // 指针
// 3-bytes 分组 ...
while ( i < k ) {
buf[0] = (byte)(( bytes[i] & 0xFC) >> 2);
buf[1] = (byte)(((bytes[i] & 0x03) << 4) |
((bytes[i+1] & 0xF0) >> 4));
buf[2] = (byte)(((bytes[i+1] & 0x0F) << 2) |
((bytes[i+2] & 0xC0) >> 6));
buf[3] = (byte)( bytes[i+2] & 0x3F);
send(out, BaseTable[buf[0]]);
send(out, BaseTable[buf[1]]);
send(out, BaseTable[buf[2]]);
send(out, BaseTable[buf[3]]);
if ((linelength += 4) >= 76) {
send(out, " ");
linelength = 0;
}
i += 3;
}
// 处理尾部 ...
if (nrest==2) {
// 2 bytes left
buf[0] = (byte)(( bytes[k] & 0xFC) >> 2);
buf[1] = (byte)(((bytes[k] & 0x03) << 4) |
((bytes[k+1] & 0xF0) >> 4));
buf[2] = (byte)(( bytes[k+1] & 0x0F) << 2);
}
else if (nrest==1) {
// 1 byte left
buf[0] = (byte)((bytes[k] & 0xFC) >> 2);
buf[1] = (byte)((bytes[k] & 0x03) << 4);
}
if (nrest > 0) {
// 发送尾部
if ((linelength += 4) >= 76) send(out, " ");
send(out, BaseTable[buf[0]]);
send(out, BaseTable[buf[1]]);
//
if (nrest==2) {
send(out, BaseTable[buf[2]]);
}
else {
send(out, "=");
}
send(out, "=");
}
out.flush();
//这里用到的send方法,请大家根据需要,自己写。可以是把结果输出到控制台,或发送邮件。
}
catch (Exception e) {
e.printStackTrace();
}
}
}
看完了这篇文章,相信你对“怎么用Java语言实现Base64编码”有了一定的了解,如果想了解更多相关知识,欢迎关注编程网行业资讯频道,感谢各位的阅读!