Examination_system/Examination_system-1/.svn/pristine/c9/c9d4fd0c99a631497afc6520562...

15 lines
254 B
Plaintext
Raw Normal View History

2023-10-30 13:10:40 +08:00
package com.bonus.camera.beans;
import org.apache.commons.codec.binary.Base64;
public class Encodes {
/**
* Base64解码.
*/
public static byte[] decodeBase64(String input) {
return Base64.decodeBase64(input.getBytes());
}
}