|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.compress.utils.ArchiveUtils
public class ArchiveUtils
Generic Archive utilities
| Method Summary | |
|---|---|
static boolean |
isEqual(byte[] buffer1,
byte[] buffer2)
Compare byte buffers |
static boolean |
isEqual(byte[] buffer1,
byte[] buffer2,
boolean ignoreTrailingNulls)
Compare byte buffers, optionally ignoring trailing nulls |
static boolean |
isEqual(byte[] buffer1,
int offset1,
int length1,
byte[] buffer2,
int offset2,
int length2)
Compare byte buffers |
static boolean |
isEqual(byte[] buffer1,
int offset1,
int length1,
byte[] buffer2,
int offset2,
int length2,
boolean ignoreTrailingNulls)
Compare byte buffers, optionally ignoring trailing nulls |
static boolean |
isEqualWithNull(byte[] buffer1,
int offset1,
int length1,
byte[] buffer2,
int offset2,
int length2)
Compare byte buffers, ignoring trailing nulls |
static boolean |
matchAsciiBuffer(String expected,
byte[] buffer)
Check if buffer contents matches Ascii String. |
static boolean |
matchAsciiBuffer(String expected,
byte[] buffer,
int offset,
int length)
Check if buffer contents matches Ascii String. |
static byte[] |
toAsciiBytes(String inputString)
Convert a string to Ascii bytes. |
static String |
toAsciiString(byte[] inputBytes)
Convert an input byte array to a String using the ASCII character set. |
static String |
toString(ArchiveEntry entry)
Generates a string containing the name, isDirectory setting and size of an entry. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static String toString(ArchiveEntry entry)
For example:
- 2000 main.c
d 100 testfiles
public static boolean matchAsciiBuffer(String expected,
byte[] buffer,
int offset,
int length)
expected - buffer - offset - length -
true if buffer is the same as the expected string
public static boolean matchAsciiBuffer(String expected,
byte[] buffer)
expected - buffer -
true if buffer is the same as the expected stringpublic static byte[] toAsciiBytes(String inputString)
inputString -
public static String toAsciiString(byte[] inputBytes)
inputBytes -
public static boolean isEqual(byte[] buffer1,
int offset1,
int length1,
byte[] buffer2,
int offset2,
int length2,
boolean ignoreTrailingNulls)
buffer1 - offset1 - length1 - buffer2 - offset2 - length2 - ignoreTrailingNulls -
true if buffer1 and buffer2 have same contents, having regard to trailing nulls
public static boolean isEqual(byte[] buffer1,
int offset1,
int length1,
byte[] buffer2,
int offset2,
int length2)
buffer1 - offset1 - length1 - buffer2 - offset2 - length2 -
true if buffer1 and buffer2 have same contents
public static boolean isEqual(byte[] buffer1,
byte[] buffer2)
buffer1 - buffer2 -
true if buffer1 and buffer2 have same contents
public static boolean isEqual(byte[] buffer1,
byte[] buffer2,
boolean ignoreTrailingNulls)
buffer1 - buffer2 - ignoreTrailingNulls -
true if buffer1 and buffer2 have same contents
public static boolean isEqualWithNull(byte[] buffer1,
int offset1,
int length1,
byte[] buffer2,
int offset2,
int length2)
buffer1 - offset1 - length1 - buffer2 - offset2 - length2 -
true if buffer1 and buffer2 have same contents, having regard to trailing nulls
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||