All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.io.HexDump Maven / Gradle / Ivy

Go to download

Library for use in Java components of Vespa. Shared code which do not fit anywhere else.

There is a newer version: 8.441.21
Show newest version
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.io;

/**
 * @author bratseth
 */
public class HexDump {

    private static final String HEX_CHARS = "0123456789ABCDEF";

    public static String toHexString(byte[] buf) {
        if (buf == null) {
            return null;
        }
        StringBuilder sb = new StringBuilder();
        for (byte b : buf) {
            int x = b;
            if (x < 0) {
                x += 256;
            }
            sb.append(HEX_CHARS.charAt(x / 16));
            sb.append(HEX_CHARS.charAt(x % 16));
        }
        return sb.toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy