public class ArchiveUtils extends Object
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isArrayZero(byte[] a, int size)
Returns true if the first N bytes of an array are all zero
|
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
Check if buffer contents matches Ascii String.
|
static boolean |
matchAsciiBuffer(String
Check if buffer contents matches Ascii String.
|
static byte[] |
toAsciiBytes(String
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 |
toAsciiString(byte[] inputBytes, int offset, int length)
Convert an input byte array to a String using the ASCII character set.
|
static String |
toString(ArchiveEntry
Generates a string containing the name, isDirectory setting and size of an entry.
|
public static StringtoString(ArchiveEntry entry)
For example:
- 2000 main.c d 100 testfiles
public static boolean matchAsciiBuffer(Stringexpected, byte[] buffer, int offset, int length)
expected -
buffer -
offset -
length -
true if buffer is the same as the expected string
public static boolean matchAsciiBuffer(Stringexpected, byte[] buffer)
expected -
buffer -
true if buffer is the same as the expected string
public static byte[] toAsciiBytes(StringinputString)
inputString -
public static StringtoAsciiString(byte[] inputBytes)
inputBytes -
public static StringtoAsciiString(byte[] inputBytes, int offset, int length)
inputBytes - input byte array
offset - offset within array
length - length of array
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
public static boolean isArrayZero(byte[] a,
int size)
a - The array to check
size - The number of characters to check (not the size of the array)