com.github.fashionbrot.tool.Base64Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mars-tool Show documentation
Show all versions of mars-tool Show documentation
mars-tool 工具包 https://github.com/fashionbrot/mars-tool
The newest version!
package com.github.fashionbrot.tool;
import java.nio.charset.StandardCharsets;
import java.util.Base64;
/**
* @author fashi
*/
public class Base64Util {
public final static byte[] byte_empty = new byte[]{};
/**
* 加密
* @param binaryData
* @return
*/
protected static byte[] encode(byte[] binaryData) {
byte[] result = byte_empty;
if (ObjectUtil.isNotEmpty(binaryData)) {
result = Base64.getEncoder().encode(binaryData);
}
return result;
}
/**
* 加密
* @param binaryData
* @return
*/
public static byte[] mimeEncode(final byte[] binaryData) {
if (ObjectUtil.isNotEmpty(binaryData)) {
return Base64.getMimeEncoder().encode(binaryData);
}
return byte_empty;
}
/**
* 加密
* @param binaryData
* @return
*/
public static byte[] encode(final String binaryData) {
if (ObjectUtil.isNotEmpty(binaryData)) {
byte[] bytes = binaryData.getBytes(StandardCharsets.UTF_8);
return encode(bytes);
}
return byte_empty;
}
/**
* 解密
* @param str
* @return
*/
public static byte[] decode(byte[] str) {
if (ObjectUtil.isNotEmpty(str)) {
return Base64.getDecoder().decode(str);
}
return byte_empty;
}
/**
* 解密
* @param str
* @return
*/
public static byte[] mimeDecode(byte[] str) {
if (ObjectUtil.isNotEmpty(str)) {
return Base64.getMimeDecoder().decode(str);
}
return byte_empty;
}
/**
* 解密
* @param str
* @return
*/
public static byte[] decode(String str) {
if (ObjectUtil.isNotEmpty(str)) {
return Base64.getDecoder().decode(str);
}
return byte_empty;
}
public static String encodeBase64String(final byte[] binaryData) {
return ObjectUtil.newStringUsAscii(encode(binaryData));
}
}