码迷,mamicode.com
首页 > 其他好文 > 详细

commons-codec包的学习

时间:2017-10-25 13:25:37      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:sha   cep   imp   ack   throws   throw   ble   mon   package   

commons-codec是Apache开源组织提供的用于摘要运算、编码的包。在该包中主要分为四类加密:BinaryEncoders、DigestEncoders、LanguageEncoders、NetworkEncoders。

今天就为大家介绍一下如何用commons-codec包完成常见的编码、摘要运算。

Base64

示例代码:

@Test
public void testBase64()
{
   System.out.println("==============Base64================");
   byte[] data = "jianggujin".getBytes();
   Base64 base64 = new Base64();
   String encode = base64.encodeAsString(data);
   System.out.println(encode);
   System.out.println(new String(base64.decode(encode)));
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

运行结果:

==============Base64================
amlhbmdndWppbg==
jianggujin
  • 1
  • 2
  • 3

MD5摘要运算

示例代码:

@Test
public void testMD5()
{
   System.out.println("==============MD5================");
   String result = DigestUtils.md5Hex("jianggujin");
   System.out.println(result);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

运行结果:

acab4efdfd3b8efcdec37fe160d7be0e
  • 1

SHA等摘要运算和MD5类似。

URLCodec

示例代码:

@Test
public void testURLCodec() throws Exception
{
   System.out.println("==============URLCodec================");
   URLCodec codec = new URLCodec();
   String data = "蒋固金";
   String encode = codec.encode(data, "UTF-8");
   System.out.println(encode);
   System.out.println(codec.decode(encode, "UTF-8"));
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10

运行结果:

==============URLCodec================
%E8%92%8B%E5%9B%BA%E9%87%91
蒋固金
  • 1
  • 2
  • 3

完整示例代码:

package com.gujin.codec;

import org.apache.commons.codec.binary.Base64;
import org.apache.commons.codec.digest.DigestUtils;
import org.apache.commons.codec.net.URLCodec;
import org.junit.Test;

public class CodecTest
{
   @Test
   public void testBase64()
   {
      System.out.println("==============Base64================");
      byte[] data = "jianggujin".getBytes();
      Base64 base64 = new Base64();
      String encode = base64.encodeAsString(data);
      System.out.println(encode);
      System.out.println(new String(base64.decode(encode)));
   }

   @Test
   public void testMD5()
   {
      System.out.println("==============MD5================");
      String result = DigestUtils.md5Hex("jianggujin");
      System.out.println(result);
   }

   @Test
   public void testURLCodec() throws Exception
   {
      System.out.println("==============URLCodec================");
      URLCodec codec = new URLCodec();
      String data = "蒋固金";
      String encode = codec.encode(data, "UTF-8");
      System.out.println(encode);
      System.out.println(codec.decode(encode, "UTF-8"));
   }
}

commons-codec包的学习

标签:sha   cep   imp   ack   throws   throw   ble   mon   package   

原文地址:http://www.cnblogs.com/hanguocai/p/7728062.html

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