org.apache.commons.compress.utils
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 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 |
toAsciiString(byte[] inputBytes,
int offset,
int length)
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.
|
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 stringpublic 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 String toAsciiString(byte[] inputBytes, int offset, int length)
inputBytes - input byte arrayoffset - offset within arraylength - length of arraypublic 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 nullspublic 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 contentspublic static boolean isEqual(byte[] buffer1,
byte[] buffer2)
buffer1 - buffer2 - true if buffer1 and buffer2 have same contentspublic static boolean isEqual(byte[] buffer1,
byte[] buffer2,
boolean ignoreTrailingNulls)
buffer1 - buffer2 - ignoreTrailingNulls - true if buffer1 and buffer2 have same contentspublic 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 nullspublic static boolean isArrayZero(byte[] a,
int size)
a - The array to checksize - The number of characters to check (not the size of the array)Copyright © 2013 The Apache Software Foundation. All rights reserved.