I'm having a solr query "http://localhost:8080/solr/select/?q=A".I need to read the parameter "q" in my java code.How can I get this?
Thanks, Marshal
|
If you have the query in URL form, you can use URL.getQuery(), and then would have to split the string at
If you want to query multiple parameters, better store the split String once in a map and query this multiple times. And of course, if you are using this in a servlet or similar server-side code called by this exactly URL, there are better ways to get the parameters in the servlet API (like Deepak wrote). |
|||||
|
|
|
|||
|
|
Depends on you context. BTW, |
||||
|
|
/selectpart of the URL? Servlet? JSP? Filter? – adarshr Mar 9 '11 at 12:23