Tagged Questions
-2
votes
2answers
51 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
144 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
34 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
72 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
442 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
489 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
200 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
377 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
307 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
2k 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
330 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 ...