|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.i2p.util.HexDump
public class 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?).
| Constructor Summary | |
|---|---|
HexDump()
|
|
| Method Summary | |
|---|---|
static 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. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public HexDump()
| Method Detail |
|---|
public static String dump(byte[] data)
data - Data to be dumped
public static String dump(byte[] data,
int off,
int len)
data - Data to be dumpedoff - Offset from the beginning of datalen - Number of bytes of data to be dumped
public static void dump(byte[] data,
OutputStream out)
throws IOException
data - Data to be dumpedout - Output stream
IOException
public static void dump(byte[] data,
int off,
int len,
OutputStream out)
throws IOException
data - Data to be dumpedoff - Offset from the beginning of datalen - Number of bytes of data to be dumpedout - Output stream
IOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||