An exception that occurs when you attempt to access an object that is outside the boundaries of the container. Common containers are arrays or array-based objects. This is a language-independent tag.

learn more… | top users | synonyms (1)

0
votes
3answers
44 views

Added the information from the last element to the end of an ArrayList

My question is rather simple. I am attempting to add the last element of an arrayList to the end of that array list with a line like: ArrayList.add(ArrayList.get(ArrayList.size())); but what I ...
1
vote
7answers
43 views

exception Java ArrayIndexOutOfBoundsException 0

I am getting the ArrayIndexOutOfBoundException here. What am I missing ? My code is below: public class Exercise { public static double[] strfloat(String str){ double[] f = new ...
-2
votes
1answer
38 views

An unhandled exception of type 'System.IndexOutOfRangeException' occurred. Additional information: Index was outside the bounds of the array

My code is showing unhandled exception of ArrayIndexOutOfRangeException. public static DateTime storeTime(String date) { string[] dateSplit; string[] timeSplit; ...
-1
votes
1answer
50 views

IndexOutOfBoundException in my adapter when trying to match two different data set

I wanted to put two different data into my listview from adapter. Two set of data are from different class. The LikeList consist thousand of data, while NewsData only consist 50 data like that. ...
-1
votes
3answers
39 views

Segment Length from an arrayList of Points --Java

I am trying to calculate line segments (lengths) from an arrayList that I have created. This is in JAVA. Everything works how I want it to, however I get this message: "Exception in thread "main" ...
1
vote
1answer
31 views

“java.lang.ArrayIndexOutOfBoundsException: -1” while adding tab to “javax.swing.JTabbedPane”

Please help to resolved java.lang.ArrayIndexOutOfBoundsException. I am getting this exception quite randomly and the worst part is that I could not reproduce exception. Stack-Trace shows addTab() ...
0
votes
3answers
33 views

Baffling IndexOutOfBoundsArray Exception

Can any one of you fine folks tell me what would possibly be causing this C# method to throw an IndexOutOfBounds exception? It would be much appreciated. public bool PopulateStudents(string path) ...
-2
votes
1answer
36 views

a custom listview java.lang.IndexOutOfBoundsException: Invalid index 1, size is 0 [closed]

I am getting this exception. I cannot understand the meaning of IndexOutOfBounds. I dont know why I am getting a exception for accessing the 1th (second element) on a 0 size array. I should be able to ...
0
votes
1answer
26 views

java jtable removeRow : java.lang.IndexOutOfBoundsException: Index: 1, Size: 1

I'm removing a row in my JTable and i have this Exception : IndexOutOfBoundsException: Index: 1, Size: 1". This is my TableModel Classe: public Class MyTableModel extends AbstractTableModel { ...
0
votes
4answers
42 views

Exception in thread main ArrayIndexOutOfBoundsException

Can someone maybe help me with the following error. Exception in thread main java.lang.arrayindexoutofboundsexception : 3 at RowTrans.encrypt(Rowtrans.java:33) at RowTrans.main(Rowtrans.java :7) In ...
1
vote
1answer
29 views

Using synchronized keyword while using DateFormat in a multithreading environment

Where to use synchronized keyword while using DateFormat in a multithreading environment? I am getting below Exception: java.lang.ArrayIndexOutOfBoundsException: -1 When I looked into my code, I ...
0
votes
1answer
62 views

java.lang.ArrayIndexOutOfBoundsException: 11

The error lines have comments on them. I don't know how to fix it help! I tried changing the spot where it spawns but that didn't work. if(z[image].getColorAt(x,y).equals(Color.white)) and ...
1
vote
1answer
21 views

JTabbedPane FlowLayout throws ArrayIndexOutOfBoundsException

I'm trying to apply the flow layout to a JTabbedPane so that I can set the hgap(0) and vgap(0). The default layout for the JTabbedPane leaves gaps all around. The following code throws when I try to ...
0
votes
1answer
14 views

Astar boundary checking

So I have my Astar program running and it runs 4 outta 6 times, however it gives two different array out of bound errors at times. I think its an issue of boundary checking, however I think I have my ...
0
votes
2answers
37 views

ArrayIndexOutOfBoundsException - Graph Data Structure Java

I am receiving an ArrayIndexOutOfBoundsException in my constructor for a graph data structure. Here's the code for the graph constructor: private final int MAX_VERTS = 24; private Vertex ...
0
votes
0answers
35 views

ArrayIndexOutOfBoundsException in weka.classifiers.Classifier.classifyInstance

I have wrote this method. I wanted to write a Bayesian Network. But I will get an exception on classifyInstance() method. Here is my code: public static double bayesNet1(Dataset data, Dataset ...
1
vote
1answer
57 views

Hibernate get SQL query.list() : ArrayIndexOutOfBoundsException 0

@SuppressWarnings("unchecked") public List<Object[]> findAdcampStatistics(Long adcampId, String startDate, String endDate, float costPerClick, String orderStatus){ String sqlStr = ...
0
votes
3answers
71 views

how to use simple getter and setter with android

I have a class country with an arraylist that stores countries. I have created a get and set to add and get items from specified indexes from the array list but i wont work. Whenever i call an index ...
0
votes
2answers
67 views

Can't add to an array list

I have the oddest problem, probably with a simple solution. I have created and initialized a list and then proceeded to create 4 objects of the list's type. In the constructor of these they place ...
0
votes
0answers
81 views

IndexOutOfBoundsException: charAt: 0 >= length 0 when following com.example.fragmenttest

New Information ------------------ Was running on my Galaxy S3 running 4.1.2. When tried out on my Galaxy SL running 2.3.4, absolutely no logcat issues. This tells me it is platform related, but ...
0
votes
3answers
59 views

Can't add variables to my array

I keep getting this weird issues when I'm constructing my Ulam (Prime) Spiral. What I am doing in SpiralMaker() is using a 4 step method to create the spiral. As long as the location is less than the ...
0
votes
1answer
39 views

Weird HashTable ArrayIndexOutOfBounds Exception

The test testGetBucket() is only not working when the key is greater than 5 characters. Example if any of the puppy names are longer than 5 characters, the test will return an ArrayIndexOutOfBounds ...
0
votes
1answer
49 views

File Writing Issues w/ ArrayList

EDIT: Program now writes the first existing score only, and as follows: File size(in lines)- 0- Writes as normal. 1- Prompts for initials, output shows user score was added to myscores, but the first ...
0
votes
1answer
52 views

ArrayIndexOutOfBoundsException, while not accessing any of the index

For some reason I am getting the ArrayIndexOutOfBoundsException error, I am not trying to access any of the elements of the array, all I want to do is set the size, and pass by reference to the ...
0
votes
1answer
52 views

java matrix chain multiplication array index out of bound exception

Trying to do chain matrix multiplication but the code throws an out of bound exception at 2 places, please help me eliminate it. The exception occurs at 2 places Exception in thread "main" ...
0
votes
3answers
34 views

ArrayIndexOutOfBoundsException / GUI

I am working on a programm that takes input from a file and stores the information in an array. Then, there are 5 methods for adding, deleting, printing information, etc. I have also created embedded ...
1
vote
3answers
91 views

For (*ptr)[], why is printf(“%p”,(void*)ptr+1) working but not printf(“%p”,ptr+1)? [duplicate]

I just fail to understand the error in the following program.What I have done is I've assigned the address of an array of size 5 to a pointer ptr of type (*)[].There is no type mismatch and it's ok as ...
0
votes
1answer
38 views

2d Array of Object Arrays

I want to make a 2D array of Arrays, each filled with another object. What I have so far is: class CustomCache{ boolean dirty = false; int age = 0; String addr; public ...
2
votes
2answers
52 views

ArrayIndexOutOfBounds in sorting

I've written my sorting problem as follows, but i am getting an ArrayIndexOutOfBounds exception. which i'm not able to figure it out. plz help. System.out.println("Enter the total no of digits to ...
0
votes
5answers
47 views

String subscript out of range (C++)

I am having trouble with this blasted exam question that i cannot put down, visual C++ 2010 keeps telling me: "Expression: string subscript out of range". I figured that I am running the loop longer ...
0
votes
1answer
78 views

Which vector threw index out of range exception?

I would like to access a reference to the std::vector which throws an out of range exception, or at least the line number where the exception was thrown (similar to Java's stack traces). Here is an ...
0
votes
1answer
56 views

Null pointer and index out of bounds on ArrayList and Map

public class DataStorage implements java.io.Serializable { private static final long serialVersionUID = -5597052819894601310L; private ArrayList<ArrayList<String>> array = new ...
1
vote
1answer
114 views

Populating a tableview in xcode with objects from an array is causing an out of bounds exception

I am parsing some data from an online feed and then putting that data into multiple objects, I then have a page that display options which then goes onto a tableview that shows all parts within that ...
0
votes
1answer
208 views

Cause of error java.lang.IndexOutOfBoundsException: Index: 0, Size: 0

I wrote hadoop the program from the following Map phase public class ParallelIndexation { public static class Map extends MapReduceBase implements Mapper<LongWritable, Text, Text, ...
0
votes
3answers
45 views

Why am I getting this “Out of Bounds” error?

I am getting an out of bonds error when I use this coding to get user input. The user input for noOfJudges is how long the array will be. For each judge a score is entered and tested to see if it is ...
0
votes
2answers
151 views

Array Index Out Of Bounds Exception after reading 10 lines from a .txt file

Java is throwing me an Exception (which in most cases is a solid beginner and easy-to-fix error) that I can't figure out (this is the console output): 0001 0002 0003 0004 0005 0006 0007 0008 0009 ...
2
votes
1answer
81 views

Can you throw within a conditional expression? (was: How can bounds-checking be extended to multiple dimensions?)

Note: I solved the original problem by realizing a completely different one. See the addendum for the new actual problem, but you can read the previous part for context. This is an extension of one ...
1
vote
1answer
55 views

StringIndexOutOfBoundsException: String index out of range: -3

When I'm compiling and running my tests, this message appears: StringIndexOutOfBoundsException: String index out of range: -3 I think I've done something wrong with the substrings, but I can't figure ...
0
votes
2answers
101 views

How to read a file, reverse the order, and write reverse order

Like a similar project I made, this project is reading characters from a txt file, reversing the order of the string and rewriting it to another txt file. But it keeps outputting my exception of ...
1
vote
1answer
145 views

ArrayIndexOutofBoundException when printing unicode words in jtext area. (Malayalam Words)

I am trying to print malayalam words fetched from rssfeeds provided by various medias like "Matrubhumi" "Indiavision" to a jtext area. What I am doing is saving all the topics from rssfeed to a text ...
-1
votes
1answer
57 views

Unknown error in java swing application

Hi i use a second thread to update the DefaultTableModel of a JTable each 2 seconds and aparently randomly, it throws me the following error. Exception in thread "AWT-EventQueue-0" ...
0
votes
5answers
103 views

Is it bug of JDK?

This code throw Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1 on last line. Is it bug or what? (JDK 7) int ar[] = {1,2,3}; List arList = Arrays.asList(ar); ...
0
votes
1answer
115 views

Java Reading .csv file and getting java.lang.ArrayIndexOutOfBoundsException: 3 and don't know why

I'm banging my head against a wall about a program I'm trying to complete. I'm sure the answer is simple but I just can't figure out the solution. When I write to the csv file it works but when ...
0
votes
3answers
137 views

'String Index out of Range' Error Message in Java using charAt

Recently, while coding I came upon the following error: Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0 at ...
3
votes
1answer
86 views

Java ArrayList IndexOutOfBoundsException

I have a game project for my IT class, and I have been stuck on this exception that has been throwing only sometimes when starting the game. for (int i = 0; i < entities.size(); i++) { for ...
0
votes
2answers
158 views

Video Steganography in java

I am implementing a video steganography for my project. I came across the algorithm from here . i have tried and tested the code and the embedding part is working fine. But i encountered a problem ...
0
votes
2answers
82 views

IndexOutOfBoundsException problems

I hope someone can help me with an IndexOutOfBoundsException error. I can set the amount of units within a territory, and I can set the owner of the territory however the defend function is causing a ...
0
votes
3answers
44 views

Android: Fill array up to a certain length

The situation I have got different char[] arrays with a different amount of items. To avoid the "OutOfBounds"-Error while processing them I want to standardize them. For Example: My Array has ...
1
vote
0answers
85 views

AndEngine GLES1 LWP: how to unload and load a few sprites on Resume?

I'm creating Live Wallpaper with AndEngine GLES1 and when my lwp started sometimes I get an error: java.lang.IndexOutOfBoundsException: Invalid index 4 size is 4. I know, that sprites should be ...
0
votes
1answer
20 views

Xcode 4 NSRangeException Error after split string

I'm trying to split a string and separate it into variable but am getting the following error: * Terminating app due to uncaught exception 'NSRangeException', reason: '* -[__NSArrayM ...

1 2 3 4 5 8