Struts2.16 Source Code study:Help! What happened in request.getParameterMap()?

2009-07-21 Thread BlackKnight
, ActionMapping mapping) { . Map parameterMap = request.getParameterMap();//the line .. } The thing I don't understand is before this line was called. debug show the parameterMap in request is empty! however after this line. the parameterMap was filled with values!!!And this me

Re: request.getParameterMap

2006-11-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nitin, Nitin M. Mandolkar wrote: > As Map stores values as Kay and Value pair. Where type of value is > Object. Here I am asking to Cast Object to String or call object > toString method. Sorry... is there a question in there? I definitely posted c

RE: request.getParameterMap

2006-11-12 Thread Nitin M. Mandolkar
Users Mailing List Subject: Re: request.getParameterMap -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nitin, > From: temp temp [mailto:[EMAIL PROTECTED] > How can I translatevalue [Ljava.lang.String;@1849daf to > readable String? Nitin M. Mandolkar wrote: > Cast it to S

Re: request.getParameterMap

2006-11-07 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Nitin, > From: temp temp [mailto:[EMAIL PROTECTED] > How can I translatevalue [Ljava.lang.String;@1849daf to > readable String? Nitin M. Mandolkar wrote: > Cast it to String object. This won't work. Casting String[] to a String will resul

RE: request.getParameterMap

2006-11-07 Thread Nitin M. Mandolkar
Cast it to String object. Nitin -Original Message- From: temp temp [mailto:[EMAIL PROTECTED] Sent: Friday, November 03, 2006 8:04 AM To: user@struts.apache.org Subject: request.getParameterMap I want all the parameters in ServletRequest object for this I am using the method

Re: request.getParameterMap

2006-11-03 Thread Niall Pemberton
On 11/3/06, temp temp <[EMAIL PROTECTED]> wrote: I want all the parameters in ServletRequest object for this I am using the method request.getParameterMap(). It returns java.util.Map which contains request parameter name and its value.When I print out the Map I can read the key

Re: request.getParameterMap

2006-11-03 Thread Mike Baroukh
I suppose this values are array of strings ... temp temp a écrit : I want all the parameters in ServletRequest object for this I am using the method request.getParameterMap(). It returns java.util.Map which contains request parameter name and its value.When I print out the Map I can

RE: request.getParameterMap

2006-11-03 Thread Levan Dvalishvili
@struts.apache.org Subject: request.getParameterMap I want all the parameters in ServletRequest object for this I am using the method request.getParameterMap(). It returns java.util.Map which contains request parameter name and its value.When I print out the Map I can read the key but I cannot read the

request.getParameterMap

2006-11-03 Thread temp temp
I want all the parameters in ServletRequest object for this I am using the method request.getParameterMap(). It returns java.util.Map which contains request parameter name and its value.When I print out the Map I can read the key but I cannot read the value . Here is the