I have an URL which will call a method my method in Java. It looks like this:
http://www.example.com/method?value=24
How can I retrieve value 24 and use it in my called method?
|
I am assuming here that you do create the number - the '24' - in your Java code, since you say you are using Wicket. Thus, as seanizer already said, in 99% of the cases, you do not need to parse the request url to get the value, something like this should be sufficient:
or - with models - like this
If you really, really, REALLY-REALLY do need the parameter from the URL, I guess this is what you want:
Depending on how you configured your application, you might need to implement the other constructors accordingly. Good luck. |
|||
|
|
|
OK, the way to access a request parameter in wicket is this:
But usually you don't have to do that, because you pass parameters by using BookmarkablePageLinks with PageParameters objects and read those objects from the page constructors. Read this page for some material on Bookmarkable Links in Wicket. |
|||||||||||||
|
|
If you are using Servlets, you can use ServletRequest.getParameter(...) If you use JSP, you can use the |
|||
|
|
Something like this:
|
|||||||||
|
|
One of:
There are even more ways of getting it, but these are the most straightforward. |
|||
|
|
URLobject. What method and how it is called. – Bozho Sep 2 '10 at 8:05