java使用Base64编码实例
时间:2020-11-28 14:37:26|栏目:JAVA代码|点击: 次
本文实例为大家分享了java使用Base64编码的具体代码,供大家参考,具体内容如下
Test Base64
package com.weiwen.provider.utils;
import java.io.IOException;
import com.alibaba.fastjson.JSON;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import sun.misc.BASE64Encoder;
import sun.misc.BASE64Decoder;
@Slf4j
public class Base64 {
@Test
public void testBase64() throws IOException {
// BASE64编码
String s = "1f2bc1970a2eb19aabc0f94acea922717a1ae998603ff0593baff";
BASE64Encoder encoder = new BASE64Encoder();
s = encoder.encode(s.getBytes("UTF-8"));
// System.out.println(s);
log.info("BASE64编码为:{}", JSON.toJSONString(s));
// BASE64解码
BASE64Decoder decoder = new BASE64Decoder();
byte[] bytes = decoder.decodeBuffer(s);
// System.out.println(new String(bytes, "UTF-8"));
log.info("BASE64解码为:{}", JSON.toJSONString(new String(bytes, "UTF-8")));
}
}
Base64工具类
package com.weiwen.provider.utils;
import java.io.IOException;
import com.alibaba.fastjson.JSON;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import sun.misc.BASE64Encoder;
import sun.misc.BASE64Decoder;
@Slf4j
public class Base64 {
/**
* Base64 编码
* @param encodeText
* @return
* @throws IOException
*/
public static String base64Encode(String encodeText) throws IOException{
BASE64Encoder encoder = new BASE64Encoder();
String str = encoder.encode(encodeText.getBytes("UTF-8"));
log.info("BASE64编码为:{}", JSON.toJSONString(str));
return str;
}
/**
* Base64 解码
* @param decodeText
* @return
* @throws IOException
*/
public static byte[] base64Decode(String decodeText) throws IOException{
BASE64Decoder decoder = new BASE64Decoder();
byte[] bytes = decoder.decodeBuffer(decodeText);
log.info("BASE64解码为:{}", JSON.toJSONString(new String(bytes, "UTF-8")));
return bytes;
}
}
上一篇:Java 爬虫工具Jsoup详解
栏 目:JAVA代码
下一篇:MyBatis的逆向工程详解
本文标题:java使用Base64编码实例
本文地址:http://www.codeinn.net/misctech/27268.html


阅读排行
- 1Java Swing组件BoxLayout布局用法示例
- 2java中-jar 与nohup的对比
- 3Java邮件发送程序(可以同时发给多个地址、可以带附件)
- 4Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常
- 5Java中自定义异常详解及实例代码
- 6深入理解Java中的克隆
- 7java读取excel文件的两种方法
- 8解析SpringSecurity+JWT认证流程实现
- 9spring boot里增加表单验证hibernate-validator并在freemarker模板里显示错误信息(推荐)
- 10深入解析java虚拟机




