2. import org.apache.commons.codec.binary.Base64;
3. 使用Base64 Class進行編碼與解碼
Base64 base64 = new Base64(); //使用Base64進行字串編碼 String encodeString = new String(base64.encode("This is source string.".getBytes())); //輸出結果將為"VGhpcyBpcyBzb3VyY2Ugc3RyaW5nLg==" System.out.println(encodeString); //使用Base64進行字串解碼 String decodeString = new String(base64.decode(encodeString.getBytes())); //輸出結果將為"This is source string." System.out.println(decodeString);
Reference:
Java Base64 Encode & Decode(編碼和解碼)
沒有留言:
張貼留言
留個話吧:)