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

DigestUtils.md5Hex()

时间:2020-10-30 12:36:27      阅读:21      评论:0      收藏:0      [点我收藏+]

标签:ret   har   ges   repos   语法   amp   sys   cto   方法   

<!-- https://mvnrepository.com/artifact/org.apache.directory.studio/org.apache.commons.codec -->
<dependency>
    <groupId>org.apache.directory.studio</groupId>
    <artifactId>org.apache.commons.codec</artifactId>
    <version>1.8</version>
</dependency>

  

DigestUtils.md5Hex(behaviorInterestStr.getBytes());

  

Java getBytes() 方法

技术图片Java String类


getBytes() 方法有两种形式:

  • getBytes(String charsetName): 使用指定的字符集将字符串编码为 byte 序列,并将结果存储到一个新的 byte 数组中。

  • getBytes(): 使用平台的默认字符集将字符串编码为 byte 序列,并将结果存储到一个新的 byte 数组中。

语法

public byte[] getBytes(String charsetName) throws UnsupportedEncodingException



public byte[] getBytes()

参数

  • charsetName -- 支持的字符集名称。

返回值

返回 byte 数组。

实例

import java.io.*; public class Test { public static void main(String args[]) { String Str1 = new String("runoob"); try{ byte[] Str2 = Str1.getBytes(); System.out.println("返回值:" + Str2 ); Str2 = Str1.getBytes( "UTF-8" ); System.out.println("返回值:" + Str2 ); Str2 = Str1.getBytes( "ISO-8859-1" ); System.out.println("返回值:" + Str2 ); } catch ( UnsupportedEncodingException e){ System.out.println("不支持的字符集"); } } }

以上程序执行结果为:

返回值:[B@7852e922
返回值:[B@4e25154f
返回值:[B@70dea4e

DigestUtils.md5Hex()

标签:ret   har   ges   repos   语法   amp   sys   cto   方法   

原文地址:https://www.cnblogs.com/lzh1043060917/p/13898636.html

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