All Questions
1 question
0
votes
1
answer
46
views
Add ByteArray to integer
In the following java code-snippet you'll see this line packetLengthMax += bytes.toByteArray()[43];
My question is: How does this work?
byte[] dataBuffer = new byte[265];
int packetLength = 0;
int ...