Answer Posted / manjul
create a HTTPClient object
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet("your servlet");
HTTPResponse response = httpclient.execute(httpost);
| Is This Answer Correct ? | 22 Yes | 3 No |
Post New Answer View All Answers
What are transaction attributes?
Why doesn’t the focus feature on the tag work in every circumstance?
To what value is a variable of the string type automatically initialized?
What is the infobus?
What are the call back methods in entity bean?
How to determine SGA site?
What modifiers may be used with an inner class that is a member of an outer class?
What is JTS?
Can I run seam with jdk 1.4 and earlier?
Why does the tag url-encode javascript and mailto links?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
What is a modular application?
Difference between loadclass and class.forname?
Why use POJO when I can use hashmap
What is the purpose of the wait() method?