zoukankan      html  css  js  c++  java
  • JAVA BASE64 加密解密实现代码

    1、代码

    package com.zhaochao.utill;
    import java.io.UnsupportedEncodingException;
    import java.lang.reflect.Method;
    
    public class Base64Utill {
    	public static String encode(String code) throws UnsupportedEncodingException, Exception {
    		return encodeBase64(code.getBytes());
    	}
    
    	public static String decode(String code) throws UnsupportedEncodingException, Exception {
    		return new String(decodeBase64(code));
    	}
    
    	public static String encodeBase64(byte[] input) throws Exception {
    		Class clazz = Class.forName("com.sun.org.apache.xerces.internal.impl.dv.util.Base64");
    		Method mainMethod = clazz.getMethod("encode", byte[].class);
    		mainMethod.setAccessible(true);
    		Object retObj = mainMethod.invoke(null, new Object[] { input });
    		return (String) retObj;
    	}
    
    	public static byte[] decodeBase64(String input) throws Exception {
    		Class clazz = Class.forName("com.sun.org.apache.xerces.internal.impl.dv.util.Base64");
    		Method mainMethod = clazz.getMethod("decode", String.class);
    		mainMethod.setAccessible(true);
    		Object retObj = mainMethod.invoke(null, input);
    		return (byte[]) retObj;
    	}
    
    	public static void main(String[] rags) throws UnsupportedEncodingException, Exception {
    		String str = "abadjfajerjaqwrasdf";
    		String code = Base64Utill.encode(str);
    		System.err.println("加密前:" + str);
    		System.err.println("加密后:" + code);
    		System.err.println("解密后:" + Base64Utill.decode(code));
    
    	}
    
    }
    

    2、输出结果

    加密前:abadjfajerjaqwrasdf
    加密后:YWJhZGpmYWplcmphcXdyYXNkZg==
    解密后:abadjfajerjaqwrasdf
    


  • 相关阅读:
    Jenkins系列——使用SonarQube进行代码质量检查
    HTTP1.0工作原理
    Jenkins系列——使用checkstyle进行代码规范检查
    Jenkins系列——定时构建
    Hadoop环境搭建
    eclipse3.4+对的处理插件(附SVN插件安装实例)
    MD5
    RedHat6.5更新软件源
    ubuntu软件推荐
    disconf系列【2】——解决zk部署情况为空的问题
  • 原文地址:https://www.cnblogs.com/whzhaochao/p/5023417.html
Copyright © 2011-2022 走看看