String array

how can i get text area message in jsp to my action form.can i use string array.reply fast
[104 byte] By [sepuri_rama@yahoo.co.ina] at [2007-11-26 19:23:25]
# 1
session.getParameter
malkolingea at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 2
i want is that we can use string array in struts action form class to get long text messages into my form bean
sepuri_rama@yahoo.co.ina at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 3
Yes java String can hold upto 4 GB. But this also depends on the memory you have configured on your machine.
Vishwas_Prasannaa at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 4
fast
java_knighta at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 5
> fastIt took you 4 months to come up with that?
georgemca at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 6
> fastThat indeed was :rolleyes:
aniseeda at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 7
> session.getParameterWhat is this session that has a getParameter?
aniseeda at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 8

> Yes java String can hold upto 4 GB. But this also

> depends on the memory you have configured on your

> machine.

If anyone else is reading the above nonsense, ignore it. It's, well, nonsense. The JLS does not mandate an upper limit on the size of Strings, but in common actual implementations of Java, Strings are composed of arrays of characters, and an array can contain at most 2147483647 (Integer.MAX_VALUE) elements, which falls some way short of 4GB

georgemca at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 9
You see, waking up old threads always brings some useful information. ;-)
java_knighta at 2007-7-9 21:45:01 > top of Java-index,Core,Core APIs...
# 10

> If anyone else is reading the above nonsense, ignore

> it. It's, well, nonsense. The JLS does not mandate an

> upper limit on the size of Strings, but in common

> actual implementations of Java, Strings are composed

> of arrays of characters, and an array can contain at

> most 2147483647 (Integer.MAX_VALUE) elements, which

> falls some way short of 4GB

...at 2 bytes per character = 4Gb!

;-)

dannyyatesa at 2007-7-9 21:45:02 > top of Java-index,Core,Core APIs...
# 11

> > If anyone else is reading the above nonsense,

> ignore

> > it. It's, well, nonsense. The JLS does not mandate

> an

> > upper limit on the size of Strings, but in common

> > actual implementations of Java, Strings are

> composed

> > of arrays of characters, and an array can contain

> at

> > most 2147483647 (Integer.MAX_VALUE) elements,

> which

> > falls some way short of 4GB

>

> ...at 2 bytes per character = 4Gb!

>

> ;-)

Doh! I'm invoking the "it's Monday and I had 2 hours sleep after seeing Aerosmith last night" rule :-)

Although still the JLS doesn't actually mandate the limit

georgemca at 2007-7-9 21:45:02 > top of Java-index,Core,Core APIs...