web-dev-qa-db-ja.com

GUID to ByteArray

GUIDをバイト配列に変換するためにこのコードを書いたところです。誰かがそれに穴を開けたり、もっと良いものを提案したりできますか?

 public static byte[] getGuidAsByteArray(){

 UUID uuid = UUID.randomUUID();
 long longOne = uuid.getMostSignificantBits();
 long longTwo = uuid.getLeastSignificantBits();

 return new byte[] {
      (byte)(longOne >>> 56),
      (byte)(longOne >>> 48),
      (byte)(longOne >>> 40),
      (byte)(longOne >>> 32),   
      (byte)(longOne >>> 24),
      (byte)(longOne >>> 16),
      (byte)(longOne >>> 8),
      (byte) longOne,
      (byte)(longTwo >>> 56),
      (byte)(longTwo >>> 48),
      (byte)(longTwo >>> 40),
      (byte)(longTwo >>> 32),   
      (byte)(longTwo >>> 24),
      (byte)(longTwo >>> 16),
      (byte)(longTwo >>> 8),
      (byte) longTwo
       };
}

C++では、これを実行できたことを覚えていますが、メモリ管理などを使用してJavaで実行する方法はないと思いますか?:

    UUID uuid = UUID.randomUUID();

    long[] longArray = new long[2];
    longArray[0] = uuid.getMostSignificantBits();
    longArray[1] = uuid.getLeastSignificantBits();

    byte[] byteArray = (byte[])longArray;
    return byteArray;

編集

公式タイプのいずれにも準拠しないバイトとして完全にランダムなUUIDを生成する場合、これは機能し、無駄になります 10ビット少ない UUID.randomUUID()によって生成されるタイプ4UUIDよりも:

    public static byte[] getUuidAsBytes(){
    int size = 16;
    byte[] bytes = new byte[size];
    new Random().nextBytes(bytes);
    return bytes;
}
26
Chris Dutrow

私は組み込みの機能に依存します:

ByteBuffer bb = ByteBuffer.wrap(new byte[16]);
bb.putLong(uuid.getMostSignificantBits());
bb.putLong(uuid.getLeastSignificantBits());
return bb.array();

またはのようなもの、

ByteArrayOutputStream ba = new ByteArrayOutputStream(16);
DataOutputStream da = new DataOutputStream(ba);
da.writeLong(uuid.getMostSignificantBits());
da.writeLong(uuid.getLeastSignificantBits());
return ba.toByteArray();

(注、テストされていないコード!)

64
aioobe
public static byte[] newUUID() {
    UUID uuid = UUID.randomUUID();
    long hi = uuid.getMostSignificantBits();
    long lo = uuid.getLeastSignificantBits();
    return ByteBuffer.allocate(16).putLong(hi).putLong(lo).array();
}
13
comonad

Apache-commonsから UUID を確認できます。使用したくない場合もありますが、 sources をチェックして、そのgetRawBytes()メソッドがどのように実装されているかを確認してください。

public UUID(long mostSignificant, long leastSignificant) {
    rawBytes = Bytes.append(Bytes.toBytes(mostSignificant), Bytes.toBytes(leastSignificant));
}
4
Bozho

Apache Commons Lang3 Conversion.uuidToByteArray(...) を見ることができます。逆に、 Conversion.byteArrayToUuid(...) を見て、UUIDに変換し直します。

0