Generic Resizing Circular Array : Ver 2 Programming Software Development by somjit{} … up because : head + size > source length , and resulted in `IndexOutOfBounds` exception. So i made something similar that works with cicular… Re: Am I Right? Programming Software Development by masijade … index of the last character, technically, points to an "IndexOutOfBounds", but both this condition and the "-1"…; (which is also an IndexOutOfBounds) are both handled gracefully by substring. [quote] However, for the… Re: Reading from a file to fill an array Programming Software Development by zoodaddy65 …, the interest JComboBox is unpopulated. I was also getting an IndexOutOfBounds exception, so I increased the size of String strRate[]. The… Re: Exception Handling Programming Software Development by Alex Edwards … simply wants you to catch what may potentially generate the indexOutOfBounds exception and handle it by making the number accessing the… Re: Exception Handling Programming Software Development by javaAddict … simply wants you to catch what may potentially generate the indexOutOfBounds exception and handle it by making the number accessing the… Re: Help with the Following Logic Programming Databases by vuyiswamb … me Good REsults but it give me an error of indexoutofbounds in my code [CODE] select np.id , nP.NodeID, nP… Re: Help with card deck class Programming Software Development by comSysStudent … control for loading the shuffled deck stack which gave an indexoutofbounds when deck was full(position 52 in a 52 slot… Re: need help with array that reads in files Programming Software Development by jon.kiparsky Um, just out of curiousity, why are you decrementing the index in your search function? I'd think that you'd be seeing an indexOutOfBounds - in any case, you wouldn't be seeing the contents of the array. Re: Why can't I use a string array? Programming Software Development by jon.kiparsky How do you get an indexoutofbounds exception for an index of zero? I suspect that count … Re: How to used 2 different method to populate and show String array content Programming Software Development by JamesCherrill Arrays are 0 based,, so a [5] array has length 5 and indexes 0-4 Your loop for(int i=0; i<=personArray.length; i++){ will attempt to access indexes 0-5, and will fail on the last one with an IndexOutOfBounds (5) Re: converting a string to integer array Programming Software Development by danielagaba i tested individual elements of the code and found that the problem comes from arr2 = new String [] {message}; when i try to print arr2[1], arr2[2], etc. it brings an indexoutofbounds exception. Re: Simple Shopping Cart..... not so simple Programming Software Development by Philippe.Lahaie … to max's value before adding, you'll get an IndexOutOfBounds Exception if you try to add an item when iNbItems… Re: I did not understand this code, can you please explain ? Programming Software Development by Sky Diploma … end of the array there by causing a Range Error (IndexOutOfBounds) . By subtracting the lengths, you now declare that you will… Re: Remove obj at postion Programming Software Development by Seldar I think that you are getting the IndexOutOfBounds exception, because when you test your method you have forgotten … Re: Generic Resizing Circular Array : Ver 2 Programming Software Development by JamesCherrill No time to read your code now.. but... You will learn an awful lot now from looking at the source code fr the actual API classes (eg how exceptions are handled in arrayCopy) - you should have a source.zip file in your jdk directory which contains it all. I recommend it as a general compendium of "best practice" java code, as well as … Re: Generic Resizing Circular Array : Ver 2 Programming Software Development by somjit{} Hey thanks for the location of the api codes! As retarded as it may sound , i searched a lot for them on the net thinking it may be there , but didnt find anything. All the time it was under my noses it seems.. !