web-dev-qa-db-ja.com

JavaでHTTPリクエストを送信するにはどうすればいいですか?

Javaで、HTTPリクエストメッセージを作成してHTTP Webサーバーに送信する方法

382
Yatendra Goel

Java.net.HttpUrlConnection を使用できます。

改善された例( ここから )。リンク腐敗の場合に含まれます:

public static String executePost(String targetURL, String urlParameters) {
  HttpURLConnection connection = null;

  try {
    //Create connection
    URL url = new URL(targetURL);
    connection = (HttpURLConnection) url.openConnection();
    connection.setRequestMethod("POST");
    connection.setRequestProperty("Content-Type", 
        "application/x-www-form-urlencoded");

    connection.setRequestProperty("Content-Length", 
        Integer.toString(urlParameters.getBytes().length));
    connection.setRequestProperty("Content-Language", "en-US");  

    connection.setUseCaches(false);
    connection.setDoOutput(true);

    //Send request
    DataOutputStream wr = new DataOutputStream (
        connection.getOutputStream());
    wr.writeBytes(urlParameters);
    wr.close();

    //Get Response  
    InputStream is = connection.getInputStream();
    BufferedReader rd = new BufferedReader(new InputStreamReader(is));
    StringBuilder response = new StringBuilder(); // or StringBuffer if Java version 5+
    String line;
    while ((line = rd.readLine()) != null) {
      response.append(line);
      response.append('\r');
    }
    rd.close();
    return response.toString();
  } catch (Exception e) {
    e.printStackTrace();
    return null;
  } finally {
    if (connection != null) {
      connection.disconnect();
    }
  }
}
286
duffymo

OracleのJavaチュートリアル から

import Java.net.*;
import Java.io.*;

public class URLConnectionReader {
    public static void main(String[] args) throws Exception {
        URL yahoo = new URL("http://www.yahoo.com/");
        URLConnection yc = yahoo.openConnection();
        BufferedReader in = new BufferedReader(
                                new InputStreamReader(
                                yc.getInputStream()));
        String inputLine;

        while ((inputLine = in.readLine()) != null) 
            System.out.println(inputLine);
        in.close();
    }
}
221
Chi

私は他の人がApacheのhttpクライアントを推薦することを知っています、しかしそれはめったに保証されない複雑さ(すなわち間違ったものになることができるより多くのもの)を追加します。簡単な作業では、Java.net.URLが行います。

URL url = new URL("http://www.y.com/url");
InputStream is = url.openStream();
try {
  /* Now read the retrieved document from the stream. */
  ...
} finally {
  is.close();
}
67
erickson

Apache HttpComponents 。 2つのモジュール - HttpCoreHttpClient の例は、すぐに使い始めることができます。

HttpUrlConnectionは悪い選択ではないので、HttpComponentsは退屈なコーディングの多くを抽象化します。あなたが本当に最小限のコードでたくさんのHTTPサーバー/クライアントをサポートしたいのなら、私はこれをお勧めします。ちなみに、HttpClientは複数の認証スキームのサポート、クッキーのサポートなどを必要とするクライアントに使用されるのに対して、HttpCoreは最小限の機能でアプリケーション(クライアントまたはサーバー)に使用することができます。

55
Vineet Reynolds

これが完全なJava 7プログラムです。

class GETHTTPResource {
  public static void main(String[] args) throws Exception {
    try (Java.util.Scanner s = new Java.util.Scanner(new Java.net.URL("http://tools.ietf.org/rfc/rfc768.txt").openStream())) {
      System.out.println(s.useDelimiter("\\A").next());
    }
  }
}

新しいtry-with-resourcesはScannerを自動的に閉じ、InputStreamを自動的に閉じます。

25
Janus Troelsen

これはあなたを助けるでしょう。 JARのHttpClient.jarをクラスパスに追加することを忘れないでください。

import Java.io.FileOutputStream;
import Java.io.IOException;

import org.Apache.commons.httpclient.HttpClient;
import org.Apache.commons.httpclient.HttpStatus;
import org.Apache.commons.httpclient.NameValuePair;
import org.Apache.commons.httpclient.methods.PostMethod;

public class MainSendRequest {

     static String url =
         "http://localhost:8080/HttpRequestSample/RequestSend.jsp";

    public static void main(String[] args) {

        //Instantiate an HttpClient
        HttpClient client = new HttpClient();

        //Instantiate a GET HTTP method
        PostMethod method = new PostMethod(url);
        method.setRequestHeader("Content-type",
                "text/xml; charset=ISO-8859-1");

        //Define name-value pairs to set into the QueryString
        NameValuePair nvp1= new NameValuePair("firstName","fname");
        NameValuePair nvp2= new NameValuePair("lastName","lname");
        NameValuePair nvp3= new NameValuePair("email","[email protected]");

        method.setQueryString(new NameValuePair[]{nvp1,nvp2,nvp3});

        try{
            int statusCode = client.executeMethod(method);

            System.out.println("Status Code = "+statusCode);
            System.out.println("QueryString>>> "+method.getQueryString());
            System.out.println("Status Text>>>"
                  +HttpStatus.getStatusText(statusCode));

            //Get data as a String
            System.out.println(method.getResponseBodyAsString());

            //OR as a byte array
            byte [] res  = method.getResponseBody();

            //write to file
            FileOutputStream fos= new FileOutputStream("donepage.html");
            fos.write(res);

            //release connection
            method.releaseConnection();
        }
        catch(IOException e) {
            e.printStackTrace();
        }
    }
}
14
Satish Sharma

Google Java httpクライアント は、httpリクエスト用のNice APIを持っています。あなたは簡単にJSONサポートなどを追加することができます。

import com.google.api.client.http.GenericUrl;
import com.google.api.client.http.HttpRequest;
import com.google.api.client.http.HttpResponse;
import com.google.api.client.http.HttpTransport;
import com.google.api.client.http.javanet.NetHttpTransport;
import Java.io.IOException;
import Java.io.InputStream;

public class Network {

    static final HttpTransport HTTP_TRANSPORT = new NetHttpTransport();

    public void getRequest(String reqUrl) throws IOException {
        GenericUrl url = new GenericUrl(reqUrl);
        HttpRequest request = HTTP_TRANSPORT.createRequestFactory().buildGetRequest(url);
        HttpResponse response = request.execute();
        System.out.println(response.getStatusCode());

        InputStream is = response.getContent();
        int ch;
        while ((ch = is.read()) != -1) {
            System.out.print((char) ch);
        }
        response.disconnect();
    }
}
13
Tombart

あなたはこれのためにSocketを使うことができます

String Host = "www.yourhost.com";
Socket socket = new Socket(Host, 80);
String request = "GET / HTTP/1.0\r\n\r\n";
OutputStream os = socket.getOutputStream();
os.write(request.getBytes());
os.flush();

InputStream is = socket.getInputStream();
int ch;
while( (ch=is.read())!= -1)
    System.out.print((char)ch);
socket.close();    
9
laksys

POSTリクエストを送ることについてのすばらしいリンクがあります ここ Example Depot ::による

try {
    // Construct data
    String data = URLEncoder.encode("key1", "UTF-8") + "=" + URLEncoder.encode("value1", "UTF-8");
    data += "&" + URLEncoder.encode("key2", "UTF-8") + "=" + URLEncoder.encode("value2", "UTF-8");

    // Send data
    URL url = new URL("http://hostname:80/cgi");
    URLConnection conn = url.openConnection();
    conn.setDoOutput(true);
    OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
    wr.write(data);
    wr.flush();

    // Get the response
    BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
    String line;
    while ((line = rd.readLine()) != null) {
        // Process line...
    }
    wr.close();
    rd.close();
} catch (Exception e) {
}

GETリクエストを送信したい場合は、ニーズに合わせてコードを少し変更することができます。具体的には、URLのコンストラクタ内にパラメータを追加する必要があります。次に、このwr.write(data);もコメントアウトしてください

書かれていないし、あなたが注意すべきことの一つは、タイムアウトです。特にWebServicesで使用したい場合はタイムアウトを設定する必要があります。そうしないと上記のコードが無期限にまたは少なくとも非常に長い時間待機してしまいます。

タイムアウトは次のように設定されますconn.setReadTimeout(2000);入力パラメータはミリ秒単位です

7
tzik