HexTool.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:5k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3.     Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4.                        Matthias Butz <matze@odinms.de>
  5.                        Jan Christian Meyer <vimes@odinms.de>
  6.     This program is free software: you can redistribute it and/or modify
  7.     it under the terms of the GNU Affero General Public License version 3
  8.     as published by the Free Software Foundation. You may not use, modify
  9.     or distribute this program under any other version of the
  10.     GNU Affero General Public License.
  11.     This program is distributed in the hope that it will be useful,
  12.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.     GNU Affero General Public License for more details.
  15.     You should have received a copy of the GNU Affero General Public License
  16.     along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. package net.sf.odinms.tools;
  19. import java.io.ByteArrayOutputStream;
  20. import org.apache.mina.common.ByteBuffer;
  21. /**
  22.  * Provides a class for manipulating hexadecimal numbers.
  23.  * 
  24.  * @author Frz
  25.  * @since Revision 206
  26.  * @version 1.0
  27.  */
  28. public class HexTool {
  29. static private char[] HEX = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };
  30. /**
  31.  * Static class dummy constructor.
  32.  */
  33. private HexTool() {
  34. }
  35. /**
  36.  * Turns a byte into a hexadecimal string.
  37.  * 
  38.  * @param byteValue The byte to convert.
  39.  * @return The hexadecimal representation of <code>byteValue</code>
  40.  */
  41. public static String toString(byte byteValue) {
  42. int tmp = byteValue << 8;
  43. char[] retstr = new char[] { HEX[(tmp >> 12) & 0x0F], HEX[(tmp >> 8) & 0x0F] };
  44. return String.valueOf(retstr);
  45. }
  46. /**
  47.  * Turns a <code>org.apache.mina.common.ByteBuffer</code> into a
  48.  * hexadecimal string.
  49.  * 
  50.  * @param buf The <code>org.apache.mina.common.ByteBuffer</code> to
  51.  *            convert.
  52.  * @return The hexadecimal representation of <code>buf</code>
  53.  */
  54. public static String toString(ByteBuffer buf) {
  55. buf.flip();
  56. byte arr[] = new byte[buf.remaining()];
  57. buf.get(arr);
  58. String ret = toString(arr);
  59. buf.flip();
  60. buf.put(arr);
  61. return ret;
  62. }
  63. /**
  64.  * Turns an integer into a hexadecimal string.
  65.  * 
  66.  * @param intValue The integer to transform.
  67.  * @return The hexadecimal representation of <code>intValue</code>.
  68.  */
  69. public static String toString(int intValue) {
  70. return Integer.toHexString(intValue);
  71. }
  72. /**
  73.  * Turns an array of bytes into a hexadecimal string.
  74.  * 
  75.  * @param bytes The bytes to convert.
  76.  * @return The hexadecimal representation of <code>bytes</code>
  77.  */
  78. public static String toString(byte[] bytes) {
  79. StringBuilder hexed = new StringBuilder();
  80. for (int i = 0; i < bytes.length; i++) {
  81. hexed.append(toString(bytes[i]));
  82. hexed.append(' ');
  83. }
  84. return hexed.substring(0, hexed.length() - 1);
  85. }
  86. /**
  87.  * Turns an array of bytes into a ASCII string. Any non-printable characters
  88.  * are replaced by a period (<code>.</code>)
  89.  * 
  90.  * @param bytes The bytes to convert.
  91.  * @return The ASCII hexadecimal representation of <code>bytes</code>
  92.  */
  93. public static String toStringFromAscii(byte[] bytes) {
  94. char[] ret = new char[bytes.length];
  95. for (int x = 0; x < bytes.length; x++) {
  96. if (bytes[x] < 32 && bytes[x] >= 0) {
  97. ret[x] = '.';
  98. } else {
  99. int chr = ((short) bytes[x]) & 0xFF;
  100. ret[x] = (char) chr;
  101. }
  102. }
  103. return String.valueOf(ret);
  104. }
  105. public static String toPaddedStringFromAscii(byte[] bytes) {
  106. String str = toStringFromAscii(bytes);
  107. StringBuilder ret = new StringBuilder(str.length() * 3);
  108. for (int i = 0; i < str.length(); i++) {
  109. ret.append(str.charAt(i));
  110. ret.append("  ");
  111. }
  112. return ret.toString();
  113. }
  114. /**
  115.  * Turns an hexadecimal string into a byte array.
  116.  * 
  117.  * @param hex The string to convert.
  118.  * @return The byte array representation of <code>hex</code>
  119.  */
  120. public static byte[] getByteArrayFromHexString(String hex) {
  121. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  122. int nexti = 0;
  123. int nextb = 0;
  124. boolean highoc = true;
  125. outer: for (;;) {
  126. int number = -1;
  127. while (number == -1) {
  128. if (nexti == hex.length()) {
  129. break outer;
  130. }
  131. char chr = hex.charAt(nexti);
  132. if (chr >= '0' && chr <= '9') {
  133. number = chr - '0';
  134. } else if (chr >= 'a' && chr <= 'f') {
  135. number = chr - 'a' + 10;
  136. } else if (chr >= 'A' && chr <= 'F') {
  137. number = chr - 'A' + 10;
  138. } else {
  139. number = -1;
  140. }
  141. nexti++;
  142. }
  143. if (highoc) {
  144. nextb = number << 4;
  145. highoc = false;
  146. } else {
  147. nextb |= number;
  148. highoc = true;
  149. baos.write(nextb);
  150. }
  151. }
  152. return baos.toByteArray();
  153. }
  154. }