반응형
ByteUtil.java
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 | public class ByteUtil { //public static Byte DEFAULT_BYTE = new Byte((byte) 0); /** * 문자열을 바이트로 변환한다. * * ByteUtils.toByte("1", *) = 0x01 ByteUtils.toByte("-1", *) = 0xff * ByteUtils.toByte("a", 0x00) = 0x00 * * @param value 10진수 문자열 값 * @param defaultValue * @return */ public static byte toByte(String value, byte defaultValue) { try { return Byte.parseByte(value); } catch (Exception e) { return defaultValue; } } /** * 문자열을 바이트로 변환한다. * * ByteUtils.toByteObject("1", *) = 0x01 * ByteUtils.toByteObject("-1", *) = 0xff * ByteUtils.toByteObject("a", 0x00) = 0x00 * * @param value 10진수 문자열 값 * @param defaultValue * @return */ public static Byte toByteObject(String value, Byte defaultValue) { try { return new Byte(value); } catch (Exception e) { return defaultValue; } } /** * singed byte를 unsinged byte로 변환한다. * Java에는 unsinged 타입이 없기때문에, * int로 반환한다.(b & 0xff) * * @param b singed byte * @return unsinged byte */ public static int unsignedByte(byte b) { return b & 0xFF; } /** * 입력한 바이트 배열(4바이트)을 int 형으로 변환한다. * * @param src * @param srcPos * @return */ public static int toInt(byte[] src, int srcPos) { int dword = 0; for (int i = 0; i < 4; i++) { dword = (dword << 8) + (src[i + srcPos] & 0xFF); } return dword; } /** * 입력한 바이트 배열(4바이트)을 int 형으로 변환한다. * * @param src * @return */ public static int toInt(byte[] src) { return toInt(src, 0); } /** * 입력한 바이트 배열(8바이트)을 long 형으로 변환한다. * * @param src * @param srcPos * @return */ public static long toLong(byte[] src, int srcPos) { long qword = 0; for (int i = 0; i < 8; i++) { qword = (qword << 8) + (src[i + srcPos] & 0xFF); } return qword; } /** * 입력한 바이트 배열(8바이트)을 long 형으로 변환한다. * * @param src * @return */ public static long toLong(byte[] src) { return toLong(src, 0); } /** * int 형의 값을 바이트 배열(4바이트)로 변환한다. * * @param value * @param dest * @param destPos */ public static void toBytes(int value, byte[] dest, int destPos) { for (int i = 0; i < 4; i++) { dest[i + destPos] = (byte) (value >> ((7 - i) * 8)); } } /** * int 형의 값을 바이트 배열(4바이트)로 변환한다. * * @param value * @return */ public static byte[] toBytes(int value) { byte[] dest = new byte[4]; toBytes(value, dest, 0); return dest; } /** * long 형의 값을 바이트 배열(8바이트)로 변환한다. * * @param value * @param dest * @param destPos */ public static void toBytes(long value, byte[] dest, int destPos) { for (int i = 0; i < 8; i++) { dest[i + destPos] = (byte) (value >> ((7 - i) * 8)); } } /** * long 형의 값을 바이트 배열(8바이트)로 변환한다. * * @param value * @return */ public static byte[] toBytes(long value) { byte[] dest = new byte[8]; toBytes(value, dest, 0); return dest; } /** * 8, 10, 16진수 문자열을 바이트 배열로 변환한다. * 8, 10진수인 경우는 문자열의 3자리가, 16진수인 * 경우는 2자리가, 하나의 byte로 바뀐다. * * ByteUtils.toBytes(null) = null * ByteUtils.toBytes("0E1F4E", 16) = [0x0e, 0xf4, 0x4e] * ByteUtils.toBytes("48414e", 16) = [0x48, 0x41, 0x4e] * * * @param digits 문자열 * @param radix 진수(8, 10, 16만 가능) * @return * @throws NumberFormatException */ public static byte[] toBytes(String digits, int radix) throws IllegalArgumentException, NumberFormatException { if (digits == null) { return null; } if (radix != 16 && radix != 10 && radix != 8) { throw new IllegalArgumentException("For input radix: \"" + radix + "\""); } int divLen = (radix == 16) ? 2 : 3; int length = digits.length(); if (length % divLen == 1) { throw new IllegalArgumentException("For input string: \"" + digits + "\""); } length = length / divLen; byte[] bytes = new byte[length]; for (int i = 0; i < length; i++) { int index = i * divLen; bytes[i] = (byte) (Short.parseShort(digits.substring(index, index + divLen), radix)); } return bytes; } /** * 16진수 문자열을 바이트 배열로 변환한다. * 문자열의 2자리가 하나의 byte로 바뀐다. * * ByteUtils.hexStringToBytes(null) = null * ByteUtils.hexStringToBytes("0E1F4E") = [0x0e, 0xf4, 0x4e] * ByteUtils.hexStringToBytes("48414e") = [0x48, 0x41, 0x4e] * * @param digits 16진수 문자열 * @return * @throws NumberFormatException * @see HexUtils.toBytes(String) */ public static byte[] hexStringToBytes(String digits) throws IllegalArgumentException, NumberFormatException { if (digits == null) { return null; } int length = digits.length(); if (length % 2 == 1) { throw new IllegalArgumentException("For input string: \"" + digits + "\""); } length = length / 2; byte[] bytes = new byte[length]; for (int i = 0; i < length; i++) { int index = i * 2; bytes[i] = (byte) (Short.parseShort(digits.substring(index, index + 2), 16)); } return bytes; } /** * unsigned byte(바이트)를 16진수 문자열로 바꾼다. * * ByteUtils.toHexString((byte)1) = "01" * ByteUtils.toHexString((byte)255) = "ff" * * @param b unsigned byte * @return * @see HexUtils.toString(byte) */ public static String toHexString(byte b) { StringBuffer result = new StringBuffer(3); result.append(Integer.toString((b & 0xF0) >> 4, 16)); result.append(Integer.toString(b & 0x0F, 16)); return result.toString(); } /** * unsigned byte(바이트) 배열을 16진수 문자열로 바꾼다. * * ByteUtils.toHexString(null) = null * ByteUtils.toHexString([(byte)1, (byte)255]) = "01ff" * * @param bytes unsigned byte's array * @return * @see HexUtils.toString(byte[]) */ public static String toHexString(byte[] bytes) { if (bytes == null) { return null; } StringBuffer result = new StringBuffer(); for (byte b : bytes) { result.append(Integer.toString((b & 0xF0) >> 4, 16)); result.append(Integer.toString(b & 0x0F, 16)); } return result.toString(); } /** * 두 배열의 값이 동일한지 비교한다. * * ArrayUtils.equals(null, null) = true * ArrayUtils.equals(["one", "two"], ["one", "two"]) = true * ArrayUtils.equals(["one", "two"], ["three", "four"]) = false * * @param array1 * @param array2 * @return 동일하면 true, 아니면 false */ public static boolean equals(byte[] array1, byte[] array2) { if (array1 == array2) { return true; } if (array1 == null || array2 == null) { return false; } if (array1.length != array2.length) { return false; } for (int i = 0; i < array1.length; i++) { if (array1[i] != array2[i]) { return false; } } return true; } } | cs |
반응형
'IT > 언어' 카테고리의 다른 글
[LIB] ESAPI 로 XSS 방어 (0) | 2014.05.30 |
---|---|
시큐어 코딩 가이드 (0) | 2014.05.29 |
RSA 암호화 (0) | 2014.05.29 |
Servlet Encoding Filter (0) | 2014.05.21 |
정규 표현식 예제 (0) | 2014.05.21 |