Package net.i2p.util
Class HexDump
java.lang.Object
net.i2p.util.HexDump
Hexdump class (well, it's actually a namespace with some functions,
but let's stick with java terminology :-). These methods generate
an output that resembles `hexdump -C` (Windows users: do you
remember `debug` in the DOS age?).
- Author:
- human
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
dump
(byte[] data) Dump a byte array in a String.static String
dump
(byte[] data, int off, int len) Dump a byte array in a String.static void
dump
(byte[] data, int off, int len, OutputStream out) Dump a byte array through a stream.static void
dump
(byte[] data, OutputStream out) Dump a byte array through a stream.
-
Constructor Details
-
HexDump
public HexDump()
-
-
Method Details
-
dump
Dump a byte array in a String.- Parameters:
data
- Data to be dumped
-
dump
Dump a byte array in a String.- Parameters:
data
- Data to be dumpedoff
- Offset from the beginning ofdata
len
- Number of bytes ofdata
to be dumped
-
dump
Dump a byte array through a stream.- Parameters:
data
- Data to be dumpedout
- Output stream- Throws:
IOException
-
dump
Dump a byte array through a stream.- Parameters:
data
- Data to be dumpedoff
- Offset from the beginning ofdata
len
- Number of bytes ofdata
to be dumpedout
- Output stream- Throws:
IOException
-