This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package media.Utils; | |
public class SimpleByteArrayPrinter { | |
/** | |
* print a byte array in binary form from offset index to offset+length index | |
* @param bytes byte array to be printed | |
* @param offset starting index of the byte array | |
* @param length length of the byte array you wanna print from starting index | |
* @param bytesInSingleLine how many binary formed bytes I want in single line |