There is a large array with bytes:
byte[] binary = ...; How can I split this array into several arrays using this separator:
byte[] split = new byte[]{0, 0x065, 4}; That is, you need to do the same thing as:
String default = "abcabcabcaaaa"; String split = "b"; String[] result = default.split("b"); but only with bytes.