Re: getting a RuntimeException in Vector.add()
- From: "Peter Griffin" <newsgroups@xxxxxxxxxx>
- Date: 5 Jul 2005 04:03:55 -0700
> Vector v=new Vector<String>();
I don't use java 5.0 and I cannot send a snippet that produces the
problem. It only happens sporadically.
The AppServer is a Bea WLS 8.1.
The exception is:
10:46:06/319221099::vo:T-.<E> java.lang.ArrayStoreException
at java.util.Vector.add(Vector.java:748)
at de.xxx.GutachtenTable.getLine(GutachtenTable.java:188)
The code is (GutachtenTable.java):
186: Vector lvZeile = new Vector();
187: for (int col = 0; col <= 8; col++) {
188: lvZeile.add(getValue(pvRow, col));
189: }
....
233: private Object getValue(int pvRowIndex, int pvDataColumnIndex)
{
234: Object lvValue = "";
....
274: return lvValue;
275: }
K
.
- Follow-Ups:
- Re: getting a RuntimeException in Vector.add()
- From: Tor Iver Wilhelmsen
- Re: getting a RuntimeException in Vector.add()
- From: Ingo R. Homann
- Re: getting a RuntimeException in Vector.add()
- References:
- getting a RuntimeException in Vector.add()
- From: newsgroups
- Re: getting a RuntimeException in Vector.add()
- From: Ingo R. Homann
- getting a RuntimeException in Vector.add()
- Prev by Date: Re: Toward Terser Java
- Next by Date: Demoting and Promoting Serialised Objects
- Previous by thread: Re: getting a RuntimeException in Vector.add()
- Next by thread: Re: getting a RuntimeException in Vector.add()
- Index(es):
Relevant Pages
|