16進値を表す長い文字列(ダンプから)をバイト配列に変換する方法を探しています。
同じ質問 を投稿した人よりもうまく表現できなかったでしょう。
しかし、それをオリジナルのままにするために、私はそれを私自身の方法で表現します:"00A0BF"
という文字列があり、
byte[] {0x00,0xA0,0xBf}
私は何をすべきか?
私はJava初心者であり、BigInteger
を使用し、先頭の16進ゼロに注意しました。しかし、私はそれはいと思うし、私は簡単な何かを見逃していると確信しています。
これが私がこれまでに投稿したどの記事よりも優れていると思う解決策です。
public static byte[] hexStringToByteArray(String s) {
int len = s.length();
byte[] data = new byte[len / 2];
for (int i = 0; i < len; i += 2) {
data[i / 2] = (byte) ((Character.digit(s.charAt(i), 16) << 4)
+ Character.digit(s.charAt(i+1), 16));
}
return data;
}
それが改善である理由:
(BigIntegerとは異なり)先行ゼロと(Byte.parseByteとは異なり)負のバイト値で安全
Stringをchar[]
に変換したり、1バイトごとにStringBuilderおよびStringオブジェクトを作成したりしません。
利用できないかもしれないライブラリの依存関係はありません
引数が安全であることが知られていない場合は、assert
または例外による引数のチェックを追加してください。
ワンライナー:
import javax.xml.bind.DatatypeConverter;
public static String toHexString(byte[] array) {
return DatatypeConverter.printHexBinary(array);
}
public static byte[] toByteArray(String s) {
return DatatypeConverter.parseHexBinary(s);
}
警告:
eckes
のおかげで)Fabian
のおかげで)が、何らかの理由でシステムにjavax.xml
がない場合は、 ソースコードを取ることができます 。ソースを抽出してくれた@Bert Regelink
に感謝します。Commons-codecのHexクラスはあなたのためにそれをするべきです。
http://commons.Apache.org/codec/
import org.Apache.commons.codec.binary.Hex;
...
byte[] decoded = Hex.decodeHex("00A0BF");
// 0x00 0xA0 0xBF
これを実現するためにguava
で BaseEncoding を使用できるようになりました。
BaseEncoding.base16().decode(string);
逆にするには
BaseEncoding.base16().encode(bytes);
実際、私はBigIntegerのソリューションは非常にいいと思います:
new BigInteger("00A0BF", 16).toByteArray();
編集:ポスターに示されているように、先行ゼロに対しては安全ではありません。
HexBinaryAdapter
は、String
とbyte[]
の間で整列化および非整列化する機能を提供します。
import javax.xml.bind.annotation.adapters.HexBinaryAdapter;
public byte[] hexToBytes(String hexString) {
HexBinaryAdapter adapter = new HexBinaryAdapter();
byte[] bytes = adapter.unmarshal(hexString);
return bytes;
}
これは私が入力した単なる例です。実際にはそのまま使用するので、使用するための別のメソッドを作成する必要はありません。
ワンライナー:
import javax.xml.bind.DatatypeConverter; public static String toHexString(byte[] array) { return DatatypeConverter.printHexBinary(array); } public static byte[] toByteArray(String s) { return DatatypeConverter.parseHexBinary(s); }
FractalizeR からのOne-linersの背後にある実際のコードに興味をお持ちの方のために(javax.xml.bindが(デフォルトで)Androidで利用可能)、これは com.Sun.xml.internal.bind.DatatypeConverterImpl.Java から来ます:
public byte[] parseHexBinary(String s) {
final int len = s.length();
// "111" is not a valid hex encoding.
if( len%2 != 0 )
throw new IllegalArgumentException("hexBinary needs to be even-length: "+s);
byte[] out = new byte[len/2];
for( int i=0; i<len; i+=2 ) {
int h = hexToBin(s.charAt(i ));
int l = hexToBin(s.charAt(i+1));
if( h==-1 || l==-1 )
throw new IllegalArgumentException("contains illegal character for hexBinary: "+s);
out[i/2] = (byte)(h*16+l);
}
return out;
}
private static int hexToBin( char ch ) {
if( '0'<=ch && ch<='9' ) return ch-'0';
if( 'A'<=ch && ch<='F' ) return ch-'A'+10;
if( 'a'<=ch && ch<='f' ) return ch-'a'+10;
return -1;
}
private static final char[] hexCode = "0123456789ABCDEF".toCharArray();
public String printHexBinary(byte[] data) {
StringBuilder r = new StringBuilder(data.length*2);
for ( byte b : data) {
r.append(hexCode[(b >> 4) & 0xF]);
r.append(hexCode[(b & 0xF)]);
}
return r.toString();
}
これは実際に動作する方法です(以前のいくつかの半正解に基づいて)。
private static byte[] fromHexString(final String encoded) {
if ((encoded.length() % 2) != 0)
throw new IllegalArgumentException("Input string must contain an even number of characters");
final byte result[] = new byte[encoded.length()/2];
final char enc[] = encoded.toCharArray();
for (int i = 0; i < enc.length; i += 2) {
StringBuilder curr = new StringBuilder(2);
curr.append(enc[i]).append(enc[i + 1]);
result[i/2] = (byte) Integer.parseInt(curr.toString(), 16);
}
return result;
}
私が見ることができる唯一の可能性のある問題は、入力文字列が非常に長い場合です。 toCharArray()を呼び出すと、文字列の内部配列のコピーが作成されます。
編集:ああ、そしてところで、バイトはJavaで署名されているので、あなたの入力文字列は[0、160、191]の代わりに[0、-96、-65]に変換される。しかし、あなたはおそらくすでにそれを知っていました。
Androidでは、16進数で作業している場合は、 okio を試すことができます。
簡単な使い方
byte[] bytes = ByteString.decodeHex("c000060000").toByteArray();
そして結果は
[-64, 0, 6, 0, 0]
編集:@ mmyersが指摘するように、このメソッドは、高ビットセット( "80" - "FF")を持つバイトに対応する部分文字列を含む入力に対しては機能しません。説明は にあります。バグID:6259307 SDKドキュメント に記載されているとおりにByte.parseByteが機能しません。
public static final byte[] fromHexString(final String s) {
byte[] arr = new byte[s.length()/2];
for ( int start = 0; start < s.length(); start += 2 )
{
String thisByte = s.substring(start, start+2);
arr[start/2] = Byte.parseByte(thisByte, 16);
}
return arr;
}
Java.mathのBigInteger()
メソッドは非常に遅く、お勧めできません。
Integer.parseInt(HEXString, 16)
digit/Integerに変換せずに一部の文字で問題を引き起こす可能性があります。
よく働く方法:
Integer.decode("0xXX") .byteValue()
関数:
public static byte[] HexStringToByteArray(String s) {
byte data[] = new byte[s.length()/2];
for(int i=0;i < s.length();i+=2) {
data[i/2] = (Integer.decode("0x"+s.charAt(i)+s.charAt(i+1))).byteValue();
}
return data;
}
楽しんで、幸運を
価値のあることに、これは文字列の連結に頼らずに奇数長の文字列をサポートする別のバージョンです。
public static byte[] hexStringToByteArray(String input) {
int len = input.length();
if (len == 0) {
return new byte[] {};
}
byte[] data;
int startIdx;
if (len % 2 != 0) {
data = new byte[(len / 2) + 1];
data[0] = (byte) Character.digit(input.charAt(0), 16);
startIdx = 1;
} else {
data = new byte[len / 2];
startIdx = 0;
}
for (int i = startIdx; i < len; i += 2) {
data[(i + 1) / 2] = (byte) ((Character.digit(input.charAt(i), 16) << 4)
+ Character.digit(input.charAt(i+1), 16));
}
return data;
}
Bert Regelinkによって提示されたコードは単に機能しません。以下を試してください。
import javax.xml.bind.DatatypeConverter;
import Java.io.*;
public class Test
{
@Test
public void testObjectStreams( ) throws IOException, ClassNotFoundException
{
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
String stringTest = "TEST";
oos.writeObject( stringTest );
oos.close();
baos.close();
byte[] bytes = baos.toByteArray();
String hexString = DatatypeConverter.printHexBinary( bytes);
byte[] reconvertedBytes = DatatypeConverter.parseHexBinary(hexString);
assertArrayEquals( bytes, reconvertedBytes );
ByteArrayInputStream bais = new ByteArrayInputStream(reconvertedBytes);
ObjectInputStream ois = new ObjectInputStream(bais);
String readString = (String) ois.readObject();
assertEquals( stringTest, readString);
}
}
私はCharacter.digitソリューションが好きですが、ここで私はそれを解決した方法です
public byte[] hex2ByteArray( String hexString ) {
String hexVal = "0123456789ABCDEF";
byte[] out = new byte[hexString.length() / 2];
int n = hexString.length();
for( int i = 0; i < n; i += 2 ) {
//make a bit representation in an int of the hex value
int hn = hexVal.indexOf( hexString.charAt( i ) );
int ln = hexVal.indexOf( hexString.charAt( i + 1 ) );
//now just shift the high order nibble and add them together
out[i/2] = (byte)( ( hn << 4 ) | ln );
}
return out;
}
私はいつものような方法を使用しました
public static final byte[] fromHexString(final String s) {
String[] v = s.split(" ");
byte[] arr = new byte[v.length];
int i = 0;
for(String val: v) {
arr[i++] = Integer.decode("0x" + val).byteValue();
}
return arr;
}
このメソッドはスペースで区切られた16進値に分割しますが、2文字のグループ化など、他の基準で文字列を分割するのは難しくありません。
コーディングスタイルとしてJava 8ストリームを好む場合は、JDKプリミティブのみを使用してこれを実現できます。
String hex = "0001027f80fdfeff";
byte[] converted = IntStream.range(0, hex.length() / 2)
.map(i -> Character.digit(hex.charAt(i * 2), 16) << 4 | Character.digit(hex.charAt((i * 2) + 1), 16))
.collect(ByteArrayOutputStream::new,
ByteArrayOutputStream::write,
(s1, s2) -> s1.write(s2.toByteArray(), 0, s2.size()))
.toByteArray();
コレクター連結関数の, 0, s2.size()
パラメーターは、IOException
をキャッチしても構わない場合は省略できます。
Kernel Panicが私にとって最も有用な解決策であることがわかりましたが、16進数の文字列が奇数の場合は問題に遭遇しました。このようにして解決しました:
boolean isOdd(int value)
{
return (value & 0x01) !=0;
}
private int hexToByte(byte[] out, int value)
{
String hexVal = "0123456789ABCDEF";
String hexValL = "0123456789abcdef";
String st = Integer.toHexString(value);
int len = st.length();
if (isOdd(len))
{
len+=1; // need length to be an even number.
st = ("0" + st); // make it an even number of chars
}
out[0]=(byte)(len/2);
for (int i =0;i<len;i+=2)
{
int hh = hexVal.indexOf(st.charAt(i));
if (hh == -1) hh = hexValL.indexOf(st.charAt(i));
int lh = hexVal.indexOf(st.charAt(i+1));
if (lh == -1) lh = hexValL.indexOf(st.charAt(i+1));
out[(i/2)+1] = (byte)((hh << 4)|lh);
}
return (len/2)+1;
}
私は配列に16進数の数を追加しているので、私は私が使用している配列への参照を渡し、そして私は変換し、次の16進数の相対位置を返す必要があります。そのため、最後のバイト配列は、[0]個の16進数ペア、[1 ...]個の16進数ペア、そして次に2個1組の...
Op投票された解決法に基づいて、以下はもう少し効率的です。
public static byte [] hexStringToByteArray (final String s) {
if (s == null || (s.length () % 2) == 1)
throw new IllegalArgumentException ();
final char [] chars = s.toCharArray ();
final int len = chars.length;
final byte [] data = new byte [len / 2];
for (int i = 0; i < len; i += 2) {
data[i / 2] = (byte) ((Character.digit (chars[i], 16) << 4) + Character.digit (chars[i + 1], 16));
}
return data;
}
Char配列への最初の変換は、charAtの長さチェックを省略するためです。
パーティーに遅刻しましたが、念のためDaveLによる上記の回答を逆のアクションを持つクラスにまとめました。
public final class HexString {
private static final char[] digits = "0123456789ABCDEF".toCharArray();
private HexString() {}
public static final String fromBytes(final byte[] bytes) {
final StringBuilder buf = new StringBuilder();
for (int i = 0; i < bytes.length; i++) {
buf.append(HexString.digits[(bytes[i] >> 4) & 0x0f]);
buf.append(HexString.digits[bytes[i] & 0x0f]);
}
return buf.toString();
}
public static final byte[] toByteArray(final String hexString) {
if ((hexString.length() % 2) != 0) {
throw new IllegalArgumentException("Input string must contain an even number of characters");
}
final int len = hexString.length();
final byte[] data = new byte[len / 2];
for (int i = 0; i < len; i += 2) {
data[i / 2] = (byte) ((Character.digit(hexString.charAt(i), 16) << 4)
+ Character.digit(hexString.charAt(i + 1), 16));
}
return data;
}
}
そしてJUnitテストクラス:
public class TestHexString {
@Test
public void test() {
String[] tests = {"0FA1056D73", "", "00", "0123456789ABCDEF", "FFFFFFFF"};
for (int i = 0; i < tests.length; i++) {
String in = tests[i];
byte[] bytes = HexString.toByteArray(in);
String out = HexString.fromBytes(bytes);
System.out.println(in); //DEBUG
System.out.println(out); //DEBUG
Assert.assertEquals(in, out);
}
}
}
public static byte[] hex2ba(String sHex) throws Hex2baException {
if (1==sHex.length()%2) {
throw(new Hex2baException("Hex string need even number of chars"));
}
byte[] ba = new byte[sHex.length()/2];
for (int i=0;i<sHex.length()/2;i++) {
ba[i] = (Integer.decode(
"0x"+sHex.substring(i*2, (i+1)*2))).byteValue();
}
return ba;
}
最もきれいな解決策ではありません。しかし、それは私のために動作し、よくフォーマットされています:
private String createHexDump(byte[] msg, String description) {
System.out.println();
String result = "\n" + description;
int currentIndex = 0;
for(int i=0 ; i<msg.length ; i++){
currentIndex++;
if(i == 0){
result += String.format("\n %04x ", i);
}
if(i % 16 == 0 && i != 0){
result += " | ";
for(int j=(i-16) ; j<msg.length && j<i ; j++) {
char characterToAdd = (char) msg[j];
if (characterToAdd == '\n') {
characterToAdd = ' ';
}
result += characterToAdd;
}
result += String.format("\n %04x ", i);
}
result += String.format("%02x ", msg[i]);
}
if(currentIndex % 16 != 0){
int fitIns = msg.length / 16;
int leftOvers = msg.length - (fitIns * 16);
for(int i=0 ; i<16-leftOvers ; i++){
result += " ";
}
result += " | ";
for(int i=msg.length-leftOvers ; i<msg.length ; i++){
char characterToAdd = (char) msg[i];
if (characterToAdd == '\n') {
characterToAdd = ' ';
}
result += characterToAdd;
}
}
result += "\n";
return result;
}
出力:
S -> C
0000 0b 00 2e 06 4d 6f 72 69 74 7a 53 6f 6d 65 20 54 | .Heyyy Some T
0010 43 50 20 73 74 75 66 66 20 49 20 63 61 70 74 75 | CP stuff I captu
0020 72 65 64 2e 2e 77 65 6c 6c 20 66 6f 72 6d 61 74 | red..well format
0030 3f | ?
私はこれが非常に古いスレッドであることを知っていますが、それでも私のペニー価値を追加したいです。
単純な16進文字列をバイナリコンバータにコード化する必要がある場合は、次のようにします。
public static byte[] hexToBinary(String s){
/*
* skipped any input validation code
*/
byte[] data = new byte[s.length()/2];
for( int i=0, j=0;
i<s.length() && j<data.length;
i+=2, j++)
{
data[j] = (byte)Integer.parseInt(s.substring(i, i+2), 16);
}
return data;
}
私の正式な解決策:
/**
* Decodes a hexadecimally encoded binary string.
* <p>
* Note that this function does <em>NOT</em> convert a hexadecimal number to a
* binary number.
*
* @param hex Hexadecimal representation of data.
* @return The byte[] representation of the given data.
* @throws NumberFormatException If the hexadecimal input string is of odd
* length or invalid hexadecimal string.
*/
public static byte[] hex2bin(String hex) throws NumberFormatException {
if (hex.length() % 2 > 0) {
throw new NumberFormatException("Hexadecimal input string must have an even length.");
}
byte[] r = new byte[hex.length() / 2];
for (int i = hex.length(); i > 0;) {
r[i / 2 - 1] = (byte) (digit(hex.charAt(--i)) | (digit(hex.charAt(--i)) << 4));
}
return r;
}
private static int digit(char ch) {
int r = Character.digit(ch, 16);
if (r < 0) {
throw new NumberFormatException("Invalid hexadecimal string: " + ch);
}
return r;
}
PHP hex2bin()関数 に似ていますが、Javaスタイルです。
例:
String data = new String(hex2bin("6578616d706c65206865782064617461"));
// data value: "example hex data"