I'm writing a Java program that reads input from a USB device. The reading works fine, but sometimes the input is an incomplete message, or a whole message with part of another message attached. To solve this, I've created a "buffer" (not sure if this is the proper term) of length 1024 (arrays name is "buffer" and it is a byte array) that saves the partial message(s) and adds it to the next input. My function seems to work, but I sometimes get a NullPointerException at line 24 ("sendRawData(sendingArr);") for some reason. Here is the offending function:
public void splitRead(byte[] splitIn) {
byte[] split=new byte[bufferLen+splitIn.length];
int splitLength=split.length;
boolean splitF=true;
for (int i=0; i<bufferLen; i++) {
split[i]=buffer[i];
}
for (int i=0; i<splitIn.length; i++) {
split[i+bufferLen]=splitIn[i];
}
bufferLen=0;
if (splitLength>4) {
for (int i=0; i<splitLength; i++) {
if ((int)(split[i]& 0xff)==254) {
int tempMsgLen=(int)(split[i+1]& 0xff);
if (splitLength>=(tempMsgLen+8+i)) {
splitF=false;
byte[] sendingArr=new byte[tempMsgLen+8];
int sL=sendingArr.length;
for (int j=0; j<(tempMsgLen+8); j++) {
sendingArr[j]=split[j+i];
}
sendRawData(sendingArr);
bufferLen=(splitLength-sL-i);
for (int j=0; j<bufferLen; j++) {
buffer[j]=split[j+i+sL];
}
break;
}
}
}
}
if (splitF) {
for (int j=0; j<splitLength; j++) {
buffer[j]=split[j];
}
bufferLen=splitLength;
} else {
splitRead(buffer);
}
}
public void sendRawData(byte[] dataArr) {
//code removed because I know this part works, have tested extensively
}
I send the buffer back to splitRead on line 40 because I need the messages to be sent to sendRawData as soon as possible, and if an input includes 2 whole messages, only one would be sent until the next input arrives otherwise. Also, if I don't send the buffer back into splitRead, I think the buffer would get larger and larger if the input always included a whole message plus extra data. I probably should be synchronizing the function somehow, but I'm not sure how to do that and I am focusing on getting basic functionality working first. I apologize if any of this text is confusing; most of this is new to me so I'm having trouble describing my problems.
Thanks for any help, Cameron
nulldoes set its reference tonull, not its value. This means that your variable has a reference to unaccessible memory. Therefore the JVM does not know what value to read, which causes the NPE. What Magnus meant is that if your byte array is not pre-initialized by 1024 bytes, there may be null references if your input buffer is not 1024 bytes long. – thobens Oct 1 '12 at 12:51