Tagged Questions
-2
votes
2answers
48 views
How to parse this queryString which is a resultant of JSON response [closed]
I have parsed a JSON response and got the String below :
String queryString = ...
0
votes
2answers
135 views
Not getting value from query string
In my application there is a registration form, after submission, it will be mailed to admin for accept/deny the registration.
In mail sending time a unique key is appending with Accept button. ...
0
votes
1answer
122 views
Calendar object from optional QueryString parameter in REST API
I have a REST API that optionally supports two querystring parameters: starttime and endtime, both self-explanatory.
Currently I pass the WebRequest parameter to my controller API and search for the ...
0
votes
2answers
33 views
if you want to create an object that holds arguments and parameters that represent a query string, what kind of object is best suited for this task?
In .net there is a class named WebClient which has a property named "QueryString" which is of type NameValueCollection (a collection of key/value pairs where each key can have one or more values).
...
0
votes
1answer
70 views
I want to send a string to mysql with special chars using java
I'm using Java 1.7 to make an aplication how conects to a MySQL DB.But I Have many problems into que insertion of values with the special characters like ",\,\n.
I'm Trying to change manually this ...
0
votes
1answer
418 views
Parse a query string parameter to java object
I have query string like that:
ObjectGUId=1abcde&ObjectType=2&ObjectTitle=maximumoflife&Content=racroi&TimeStamp=2012-11-05T17:20:06.056
And I have Java Object:
LogObject{
...
1
vote
1answer
487 views
getQueryString on ExternalContext's Request object returns null on WebSphere
I have a problem using JSF 1.1 (MyFaces 1.1.8) on WebSphere. When deploying my application on Tomcat 5.5, this behavior does not apply and everything works fine.
When I try to read parameters from an ...
0
votes
2answers
1k views
Java HttpServer/HttpExchange GET
I am trying to create a simple HttpServer in Java to handle GET requests,
but when I try to get the GET parameters for a request I noticed the HttpExchange class does not have a method for that.
Does ...
0
votes
1answer
182 views
Java Api for vt100 telnet neaded
I have problem to solve. there is vt100 telnet connected device which i have to control. The problem is that the devices telnet server shows advanced menus, witch is controlled with up and down ...
1
vote
1answer
198 views
QueryStringBindable for a custom enum
I've defined an enum type Format that implements QueryStringBindable. I think I've implemented it correctly, but in my routes file, I can't specify my type as a route parameter, because the compiler ...
0
votes
1answer
258 views
Passing arraylist in querystring in java?
I encoded an image to string and put that in arraylist. how can i send that arraylist throw querystring to server and get that arraylist in a php?
Is it possible to send arraylist in querystring?
...
0
votes
1answer
370 views
Parsing/Unmarshaling query strings which passing arrays as parameters in Java
Is there a way to Parse/Unmarshall query strings which passing arrays as parameters in Java into Map or custom class?
URL example:
...
1
vote
3answers
303 views
How to extract query string from a URL of a web-page using java
From the following URL in OathCallBack page I want extract access_token and token_type using Java. Any idea how to do it?
...
-4
votes
1answer
1k views
Reading QueryString from servlet [closed]
I have this id stored in the url:
/Game.jsp?id=5
Which is the best way to get that "5" in a servlet?
Thanks for your Help
2
votes
3answers
326 views
Part after # is missing from the request parameter value
I did a hello world web application in Java on Tomcat container. I have a query string
code=askdfjlskdfslsjdflksfjl#_=_
with underscores on both sides of = in the URL. When I tried to retrieve the ...
0
votes
2answers
2k views
How to access query string using Struts 2 tags from a JSP?
I am redirecting to a JSP that has to print the whole incoming query string. Like in this other question, Request parameter in jsp page, I do not want to access one parameter but the whole query ...
0
votes
2answers
1k views
Convert Map to QueryString [duplicate]
Possible Duplicate:
How to convert map to url query string?
How to convert Map to query string?
For example:
MockHttpServletRequest request = getRequest();
HashMap<String, ...
0
votes
2answers
233 views
Get parameter with the character '#' from a query string on java
I am trying to get a request string that has the character '#' and my parameter is got only until the '#'. But the thing is that I need to have this character, can't remove it.
Any idea?
Thank you,
...
0
votes
1answer
1k views
Remove stop words in Java — Help needed
Im using a method to remove stop word defined in a file, that will rip off those words from the query string that i pass to this method... The code is working fine
Now what i need to do is ... If the ...
4
votes
3answers
8k views
HttpServletRequest - Get query string parameters, no form data
In HttpServletRequest, getParameterMap returns a Map of all query string parameters and post data parameters.
Is there a way to get a Map of ONLY query string parameters? I'm trying to avoid using ...
2
votes
2answers
609 views
What is the equivalent to parse_str in java [duplicate]
Possible Duplicate:
Parsing query strings in Java
PHP has parse_str(), is there an equivalent function that does the same thing in java?
3
votes
5answers
438 views
Is it generally considered OK to store a query string in a database?
If I were to take a query string from an incoming request HTTP request in a web application, store it directly in a MySql database, then use it later to re-build the original request url, would that ...
0
votes
2answers
712 views
Java Web: Detect a URL with a trailing question mark and empty query string
Is there any way I can tell if there is a trailing question mark in a URL? This would theoretically be an empty non null query string while no question mark at all would be a null query string. But ...
2
votes
2answers
3k views
Check if the request parameter equals a string in Java
I want to do this in java
if(request.getParameter("page") == "page1")
// page1
else if(request.getParameter("page") == "page2")
// page2
For someone new to java, why doesn't the above code work, ...
0
votes
3answers
1k views
Passing Variable from one website page to another website page without using QueryString
This question is related to a previous question
Passing Variable from page to page using ASP.NET (C#) without using QueryString
The difference in my case is that the request is coming from a ...
0
votes
1answer
352 views
Strange Problem with Android, Program compiles but does not work
In my android project, I have a simple Java file which gets webpage content, does something with the text and returns text as a String. This text I display in a ScrollView in another activity on ...
0
votes
0answers
801 views
How to validate GET/POST parameter to avoid javascript injection
I'm building an AJAX enabled web application in which I'm accepting to inputs from user or sometimes building query string based on user action.
Using firebug or other tools anyone can inspect and ...
2
votes
1answer
2k views
Java+JSP: Query String handling
How the best way to handle query strings in Java JSP?
The method request.getQueryString() returns only a strings, how can I get the value of a specific string? Should I parse that string?
thanks
4
votes
2answers
10k views
java: decoding URI query string
I need to decode a URI that contains a query string; expected input/output behavior is something like the following:
abstract class URIParser
{
/** example input:
* ...
2
votes
4answers
5k views
Alternative to deprecated javax.servlet.http.HttpUtils.parseQueryString?
I am looking to parse a URL to obtain a collection of the querystring parameters in Java. To be clear, I need to parse a given URL(or string value of a URL object), not the URL from a servlet request. ...