Class BinaryUtils
- java.lang.Object
-
- jetbrains.buildServer.util.PEReader.BinaryUtils
-
public class BinaryUtils extends Object
-
-
Constructor Summary
Constructors Constructor Description BinaryUtils()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static long
dwordAlign(long off)
static String
readFixedByteChars(RandomAccessFile raf, int count)
static int
readUInt16(RandomAccessFile raf)
static long
readUInt32(RandomAccessFile raf)
static int
readUInt8(RandomAccessFile raf)
static String
readWCHAR(RandomAccessFile raf, int maxLen)
-
-
-
Method Detail
-
readUInt32
public static long readUInt32(RandomAccessFile raf) throws IOException
- Throws:
IOException
-
readUInt16
public static int readUInt16(RandomAccessFile raf) throws IOException
- Throws:
IOException
-
readFixedByteChars
public static String readFixedByteChars(RandomAccessFile raf, int count) throws IOException
- Throws:
IOException
-
readWCHAR
public static String readWCHAR(RandomAccessFile raf, int maxLen) throws IOException
- Throws:
IOException
-
readUInt8
public static int readUInt8(RandomAccessFile raf) throws IOException
- Throws:
IOException
-
dwordAlign
public static long dwordAlign(long off)
-
-