Package org.freedesktop
Class Hexdump
- java.lang.Object
-
- org.freedesktop.Hexdump
-
public final class Hexdump extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static char[]
HEX_CHARS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static String
format(byte[] buf)
static String
format(byte[] buf, int width)
static void
print(byte[] buf)
static void
print(byte[] buf, int width)
static void
print(byte[] buf, int width, PrintStream out)
static void
print(byte[] buf, PrintStream out)
static String
toAscii(byte[] buf)
static String
toAscii(byte[] buf, int ofs, int len)
static String
toByteArray(byte[] buf)
Returns a string which can be written to a Java source file as part of a static initializer for a byte array.static String
toByteArray(byte[] buf, int ofs, int len)
Returns a string which can be written to a Java source file as part of a static initializer for a byte array.static String
toHex(byte[] buf)
static String
toHex(byte[] buf, int ofs, int len)
-
-
-
Method Detail
-
toHex
public static String toHex(byte[] buf)
-
toHex
public static String toHex(byte[] buf, int ofs, int len)
-
toAscii
public static String toAscii(byte[] buf)
-
toAscii
public static String toAscii(byte[] buf, int ofs, int len)
-
format
public static String format(byte[] buf)
-
format
public static String format(byte[] buf, int width)
-
print
public static void print(byte[] buf)
-
print
public static void print(byte[] buf, int width)
-
print
public static void print(byte[] buf, int width, PrintStream out)
-
print
public static void print(byte[] buf, PrintStream out)
-
toByteArray
public static String toByteArray(byte[] buf)
Returns a string which can be written to a Java source file as part of a static initializer for a byte array. Returns data in the format 0xAB, 0xCD, .... use like: javafile.print("byte[] data = {") javafile.print(Hexdump.toByteArray(data)); javafile.println("};"); * @param buf- Parameters:
buf
- buffer- Returns:
- string
-
toByteArray
public static String toByteArray(byte[] buf, int ofs, int len)
Returns a string which can be written to a Java source file as part of a static initializer for a byte array. Returns data in the format 0xAB, 0xCD, .... use like: javafile.print("byte[] data = {") javafile.print(Hexdump.toByteArray(data)); javafile.println("};");- Parameters:
buf
- bufferofs
- offsetlen
- length- Returns:
- string
-
-