回答:
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();
httpCon.getInputStream();
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();
delete
ます。ここにあるようにこのコードを実行すると、実際には何も起こりません。要求は送信されません。post
リクエストを実行しているときも同じ状況ですが、たとえばhttpCon.getContent()
、リクエストをトリガーするを使用できます。しかし、httpCon.connect()
私のマシンでは何もトリガーされません:-)
public HttpURLConnection getHttpConnection(String url, String type){
URL uri = null;
HttpURLConnection con = null;
try{
uri = new URL(url);
con = (HttpURLConnection) uri.openConnection();
con.setRequestMethod(type); //type: POST, PUT, DELETE, GET
con.setDoOutput(true);
con.setDoInput(true);
con.setConnectTimeout(60000); //60 secs
con.setReadTimeout(60000); //60 secs
con.setRequestProperty("Accept-Encoding", "Your Encoding");
con.setRequestProperty("Content-Type", "Your Encoding");
}catch(Exception e){
logger.info( "connection i/o failed" );
}
return con;
}
次に、コードで:
public void yourmethod(String url, String type, String reqbody){
HttpURLConnection con = null;
String result = null;
try {
con = conUtil.getHttpConnection( url , type);
//you can add any request body here if you want to post
if( reqbody != null){
con.setDoInput(true);
con.setDoOutput(true);
DataOutputStream out = new DataOutputStream(con.getOutputStream());
out.writeBytes(reqbody);
out.flush();
out.close();
}
con.connect();
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String temp = null;
StringBuilder sb = new StringBuilder();
while((temp = in.readLine()) != null){
sb.append(temp).append(" ");
}
result = sb.toString();
in.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
logger.error(e.getMessage());
}
//result is the response you get from the remote side
}
@adietisheimおよびHttpClientを提案する他の人々に同意します。
私はHttpURLConnectionを使用してRESTサービスを呼び出す単純な呼び出しを試みるのに時間を費やしましたが、それでも確信が持てず、その後HttpClientを試しましたが、それは本当に簡単で、理解しやすく、便利でした。
put http呼び出しを行うコードの例は次のとおりです。
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpPut putRequest = new HttpPut(URI);
StringEntity input = new StringEntity(XML);
input.setContentType(CONTENT_TYPE);
putRequest.setEntity(input);
HttpResponse response = httpClient.execute(putRequest);
HttpURLConnection
仕事に、しかし具体的には、奇妙なエラーに走り続けました:cannot retry due to server authentication, in streaming mode
。あなたのアドバイスに従って私のために働いた。これは、の使用を求める質問に正確に答えるものではないことを理解していHttpURLConnection
ますが、あなたの答えが私を助けてくれました。
UrlConnectionは扱いにくいAPIです。HttpClientははるかに優れたAPIであり、このStackoverflowの質問が完全に例示するような特定のことを達成する方法を探す時間を失うことからあなたを解放します。これは、いくつかのRESTクライアントでjdk HttpUrlConnectionを使用した後に記述しています。さらに、スケーラビリティ機能(スレッドプール、接続プールなど)に関しては、HttpClientが優れています。
HTMLでPUTを正しく行うには、それをtry / catchで囲む必要があります。
try {
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();
httpCon.getInputStream();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (ProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Restテンプレートもオプションにできます:
String payload = "<?xml version=\"1.0\" encoding=\"UTF-8\"?<CourierServiceabilityRequest>....";
RestTemplate rest = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.add("Content-Type", "application/xml");
headers.add("Accept", "*/*");
HttpEntity<String> requestEntity = new HttpEntity<String>(payload, headers);
ResponseEntity<String> responseEntity =
rest.exchange(url, HttpMethod.PUT, requestEntity, String.class);
responseEntity.getBody().toString();