| 1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.goafanti.common.utils;
- import java.io.UnsupportedEncodingException;
- import org.apache.commons.codec.binary.Base64;
- public class Base64Utils {
- public static String decodeData(String inputData) {
- try {
- if (null == inputData) {
- return null;
- }
- return new String(Base64.decodeBase64(inputData.getBytes("utf-8")), "utf-8");
- } catch (UnsupportedEncodingException e) {
-
- }
- return null;
- }
- /**
- * 对给定的字符串进行base64加密操作
- */
- public static String encodeData(String inputData) {
- try {
- if (null == inputData) {
- return null;
- }
- return new String(Base64.encodeBase64(inputData.getBytes("utf-8")), "utf-8");
- } catch (UnsupportedEncodingException e) {
- }
- return null;
- }
-
- }
|