07-15-2009, 11:22 AM
|
#2 (permalink)
|
| BlackBerry Extraordinaire
Join Date: Mar 2008 Location: Austin, TX Model: 9700 PIN: N/A Carrier: T-Mobile
Posts: 1,644
Post Thanks: 0 Thanked 34 Times in 33 Posts
| This is an array index issue.
You have declared an array of size 58, but you are trying to add a 59th item to it.
The valid indexes for this array would be 0-57
Example: byte[] foobar = new byte[58];
If you now attempt
byte[58] = 'F'
...you will get the above error. |
| Offline
| |