码迷,mamicode.com
首页 > 编程语言 > 详细

java 中使用Base64

时间:2014-08-22 12:23:46      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:blog   java   使用   div   代码   log   sp   c   

    byte[] cipherData = Base64.encodeBase64(plainText.getBytes()); //默认不换行    
    byte[] cipherData = Base64.encodeBase64(plainText.getBytes(), false); //取消换行  
    byte[] cipherData = Base64.encodeBase64Chunked(plainText.getBytes()); //进行换行  
    String cipherText = Base64.encodeBase64String(plainText.getBytes()); //转为字符串  

  2. 安全的url:转换+为-、/为_、将多余的=去掉
Java代码 

    byte[] cipherData = Base64.encodeBase64(plainText.getBytes(), false, true);  
    byte[] cipherData = Base64.encodeBase64URLSafe(plainText.getBytes());  
    String cipherText = Base64.encodeBase64URLSafeString(plainText.getBytes()); 

 

java 中使用Base64,布布扣,bubuko.com

java 中使用Base64

标签:blog   java   使用   div   代码   log   sp   c   

原文地址:http://www.cnblogs.com/chengxin1982/p/3928763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!