aspose file tools
The moose likes Servlets and the fly likes passing a url paramter to a servlet Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "passing a url paramter to a servlet" Watch "passing a url paramter to a servlet" New topic
Author

passing a url paramter to a servlet

Andy Hahn
Ranch Hand

Joined: Aug 31, 2004
Posts: 225
Is there a way to pass a url as a parameter to a servlet?

For example, if I post:
http://www.mydomain.com/abc?param1=hello¶m2=http://www.google.com/search?hl=en&q=java&btnG=Google+Search

And then in my abc servlet:
String param1 = request.getParameter("param1");
String param2 = request.getParameter("param2");
Bear Bibeault
Author and ninkuma
Marshal

Joined: Jan 10, 2002
Posts: 56201
    
  13

Sure. But like any other data serving as a query parameter, it must be properly URL-encoded.


[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: passing a url paramter to a servlet
 
Similar Threads
Good Link to start Servlet
how to start doing Ibatis samples
Beginner to Servlets
Can u provide me this information
how can i develop reports in java