MessageDigestUtil.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. package info.aspirecn.iov.sjjh.util;
  20. import info.aspirecn.iov.sjjh.constant.Constants;
  21. import org.apache.commons.codec.binary.Base64;
  22. import java.io.UnsupportedEncodingException;
  23. import java.security.MessageDigest;
  24. import java.security.NoSuchAlgorithmException;
  25. /**
  26. * 消息摘要工具
  27. */
  28. public class MessageDigestUtil {
  29. /**
  30. * 先进行MD5摘要再进行Base64编码获取摘要字符串
  31. *
  32. * @param str
  33. * @return
  34. */
  35. public static String base64AndMD5(String str) {
  36. if (str == null) {
  37. throw new IllegalArgumentException("inStr can not be null");
  38. }
  39. return base64AndMD5(toBytes(str));
  40. }
  41. /**
  42. * 先进行MD5摘要再进行Base64编码获取摘要字符串
  43. *
  44. * @return
  45. */
  46. public static String base64AndMD5(byte[] bytes) {
  47. if (bytes == null) {
  48. throw new IllegalArgumentException("bytes can not be null");
  49. }
  50. try {
  51. final MessageDigest md = MessageDigest.getInstance("MD5");
  52. md.reset();
  53. md.update(bytes);
  54. final Base64 base64 = new Base64();
  55. final byte[] enbytes = base64.encode(md.digest());
  56. return new String(enbytes);
  57. } catch (final NoSuchAlgorithmException e) {
  58. throw new IllegalArgumentException("unknown algorithm MD5");
  59. }
  60. }
  61. /**
  62. * UTF-8编码转换为ISO-9959-1
  63. *
  64. * @param str
  65. * @return
  66. */
  67. public static String utf8ToIso88591(String str) {
  68. if (str == null) {
  69. return str;
  70. }
  71. try {
  72. return new String(str.getBytes("UTF-8"), "ISO-8859-1");
  73. } catch (UnsupportedEncodingException e) {
  74. throw new RuntimeException(e.getMessage(), e);
  75. }
  76. }
  77. /**
  78. * ISO-9959-1编码转换为UTF-8
  79. *
  80. * @param str
  81. * @return
  82. */
  83. public static String iso88591ToUtf8(String str) {
  84. if (str == null) {
  85. return str;
  86. }
  87. try {
  88. return new String(str.getBytes("ISO-8859-1"), "UTF-8");
  89. } catch (UnsupportedEncodingException e) {
  90. throw new RuntimeException(e.getMessage(), e);
  91. }
  92. }
  93. /**
  94. * String转换为字节数组
  95. *
  96. * @param str
  97. * @return
  98. */
  99. private static byte[] toBytes(final String str) {
  100. if (str == null) {
  101. return null;
  102. }
  103. try {
  104. return str.getBytes(Constants.ENCODING);
  105. } catch (final UnsupportedEncodingException e) {
  106. throw new RuntimeException(e.getMessage(), e);
  107. }
  108. }
  109. }