vote up 1 vote down star

Hi all.

I want to know if it is possible to send PUT, DELETE request (practically) through java.net.HttpURLConnection to HTTP-based URL. I have read so many articles describing that how to send GET, POST, TRACE, OPTIONS request but still not finding any sample code which successfully perform PUT and DELETE request. Can any one give idea regarding that?

Thanks

flag

14% accept rate
Can you show us the code you tried to use? – kd304 Jun 26 at 20:07

2 Answers

vote up 0 vote down

I would recommend Apache HTTPClient.

link|flag
vote up 2 vote down

To perform an HTTP PUT:

URL url = new URL("http://www.example.com/resource");
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
httpCon.setDoOutput(true);
httpCon.setRequestMethod("PUT");
OutputStreamWriter out = new OutputStreamWriter(
    httpCon.getOutputStream());
out.write("Resource content");
out.close();

To perform an HTTP DELETE:

URL url = new URL("http://www.example.com/resource");
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
httpCon.setDoOutput(true);
httpCon.setRequestProperty(
    "Content-Type", "application/x-www-form-urlencoded" );
httpCon.setRequestMethod("DELETE");
httpCon.connect();
link|flag
So is it possible that using java code you can delete mail from your mail account(using DELETE method) or Using post method you can create document(say like blogs.) ? – unknown (google) Jun 27 at 21:59
or Is it possible to send image/video/audio to server using POST method? – unknown (google) Jun 27 at 22:08
Yes. All these things are possible but really depend on the API supported by your mail/blog provider. – Matthew Murdoch Jun 28 at 20:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.