JavaでURLのHTTP応答コードを取得する方法


144

特定のURLの応答コードを取得する手順またはコードを教えてください。


これを参照してください。codingdiary.com
Harry Joy

2
彼が応答コードを望んでいるので、私は重複するとは言いませんが、@ Ajitはとにかくそれをチェックする必要があります。少し実験を追加すれば、準備は完了です。
slezica

2
他の人にあなたのためにあなたの仕事をするように要求するのではなく。少なくとも自分でこのタスクを実行しようとしたことを示してください。現在のコードと、このタスクを達成しようとした方法を示します。誰かにあなたの仕事をせずにあなたのためにあなたの仕事をさせたい場合は、誰かを雇って彼らに支払うことができます。
Patrick W. McMahon

彼はどんな要求をしましたか?彼は、何をすべきかわからなかったときに車輪を回す代わりに、助けを求めました。彼は意図したとおりにコミュニティを使用していました。
ダニーレミントン

回答:


180

HttpURLConnection

URL url = new URL("http://example.com");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();

int code = connection.getResponseCode();

これは決して堅牢な例ではありません。IOExceptionsとwhatnot を処理する必要があります。しかし、それであなたは始められるはずです。

さらに多くの機能が必要な場合は、HttpClientをチェックしてください。


2
私の特定のケースでは、あなたのメソッドで、通常はhttpエラー407であるIOException(「プロキシでの認証に失敗しました」)が発生します。発生した例外に関する正確さ(httpエラーコード)を取得できる方法はありますかgetRespondeCode()メソッドによって?ちなみに、私はエラーの処理方法を知っています。各例外(または少なくともこの特定の例外)を区別する方法を知りたいだけです。ありがとう。
grattmandu03 2013

2
@ grattmandu03-わかりません。stackoverflow.com/questions/18900143/…(残念ながら回答がありません)に遭遇しているようです。HttpClientのようなより高いレベルのフレームワークを使用してみると、おそらくそのような応答の処理方法をもう少し制御できます。
Rob Hruska、2013

回答ありがとうございます。私の仕事は、古いコードをこのプロキシで動作するように適合させることであり、変更が少ないほど、クライアントは私の作業を理解しやすくなります。しかし、私が思うに、それは私(今のところ)が私がやりたいことを行う唯一の方法です。とにかくありがとう。
grattmandu03 2013

finallyブロックでdisconnect()を呼び出す必要がありますか?
Andrew Swan

それはおそらく依存します、私はいくつかの研究をするでしょう。ドキュメントは言う呼び出すdisconnect()永続的な接続は、その時点でアイドル状態の場合は、その基盤となるソケットを閉じることができる方法を。、これは保証しません。ドキュメントでは、サーバーへの他の要求が近い将来発生する可能性が低いことdisconnect()HttpURLConnection示しています。呼び出しは、このインスタンスが他の要求に再利用できることを意味するべきではありませんを使用しInputStreamてデータを読み取る場合close()は、finallyブロックでストリームする必要があります。
Rob Hruska、2014年

38
URL url = new URL("http://www.google.com/humans.txt");
HttpURLConnection http = (HttpURLConnection)url.openConnection();
int statusCode = http.getResponseCode();

11
より簡潔な(ただし完全に機能する)例の場合は+1。素敵なサンプルURL(background):)
Jonik

スレッド「メイン」で例外を取得java.net.ConnectException:接続が拒否されました:接続なぜこれが発生するのかわかりません。
Ganesa Vijayakumar

トピックから外れていますが、接続が生成できるすべての応答コードを知りたいのですが、ドキュメントはありますか?
Skynet、2015年

基本認証でURLを確認する方法
Satheesh Kumar


10

以下を試すことができます:

class ResponseCodeCheck 
{

    public static void main (String args[]) throws Exception
    {

        URL url = new URL("http://google.com");
        HttpURLConnection connection = (HttpURLConnection)url.openConnection();
        connection.setRequestMethod("GET");
        connection.connect();

        int code = connection.getResponseCode();
        System.out.println("Response code of the object is "+code);
        if (code==200)
        {
            System.out.println("OK");
        }
    }
}

スレッド「メイン」で例外を取得java.net.ConnectException:接続が拒否されました:接続。私はリゾンを知らない
Ganesa Vijayakumar

5
import java.io.IOException;
import java.net.URL;
import java.net.HttpURLConnection;

public class API{
    public static void main(String args[]) throws IOException
    {
        URL url = new URL("http://www.google.com");
        HttpURLConnection http = (HttpURLConnection)url.openConnection();
        int statusCode = http.getResponseCode();
        System.out.println(statusCode);
    }
}

4

これは私のために働いています:

            import org.apache.http.client.HttpClient;
            import org.apache.http.client.methods.HttpGet;  
            import org.apache.http.impl.client.DefaultHttpClient;
            import org.apache.http.HttpResponse;
            import java.io.BufferedReader;
            import java.io.InputStreamReader;



            public static void main(String[] args) throws Exception {   
                        HttpClient client = new DefaultHttpClient();
                        //args[0] ="http://hostname:port/xyz/zbc";
                        HttpGet request1 = new HttpGet(args[0]);
                        HttpResponse response1 = client.execute(request1);
                        int code = response1.getStatusLine().getStatusCode();

                         try(BufferedReader br = new BufferedReader(new InputStreamReader((response1.getEntity().getContent())));){
                            // Read in all of the post results into a String.
                            String output = "";
                            Boolean keepGoing = true;
                            while (keepGoing) {
                                String currentLine = br.readLine();          
                                if (currentLine == null) {
                                    keepGoing = false;
                                } else {
                                    output += currentLine;
                                }
                            }
                            System.out.println("Response-->"+output);   
                         }

                         catch(Exception e){
                              System.out.println("Exception"+e);  

                          }


                   }

完璧です。URLでのリダイレクトがあっても動作します
ダニエル

2

これは私のために働いたものです:

import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;

public class UrlHelpers {

    public static int getHTTPResponseStatusCode(String u) throws IOException {

        URL url = new URL(u);
        HttpURLConnection http = (HttpURLConnection)url.openConnection();
        return http.getResponseCode();
    }
}

これが誰かを助けることを願っています:)


2

400エラーメッセージをチェックしているこのコードを試してください

huc = (HttpURLConnection)(new URL(url).openConnection());

huc.setRequestMethod("HEAD");

huc.connect();

respCode = huc.getResponseCode();

if(respCode >= 400) {
    System.out.println(url+" is a broken link");
} else {
    System.out.println(url+" is a valid link");
}

1

スキャナーによってデータ(ペイロードが不均一)を取得する効率的な方法。

public static String getResponseFromHttpUrl(URL url) throws IOException {
    HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
    try {
        InputStream in = urlConnection.getInputStream();

        Scanner scanner = new Scanner(in);
        scanner.useDelimiter("\\A");  // Put entire content to next token string, Converts utf8 to 16, Handles buffering for different width packets

        boolean hasInput = scanner.hasNext();
        if (hasInput) {
            return scanner.next();
        } else {
            return null;
        }
    } finally {
        urlConnection.disconnect();
    }
}

これは質問にまったく答えません。
プリンギ

1

これは完全な静的メソッドであり、IOExceptionが発生したときに待機時間とエラーコードを設定するために適応できます。

  public static int getResponseCode(String address) {
    return getResponseCode(address, 404);
  }

  public static int getResponseCode(String address, int defaultValue) {
    try {
      //Logger.getLogger(WebOperations.class.getName()).info("Fetching response code at " + address);
      URL url = new URL(address);
      HttpURLConnection connection = (HttpURLConnection) url.openConnection();
      connection.setConnectTimeout(1000 * 5); //wait 5 seconds the most
      connection.setReadTimeout(1000 * 5);
      connection.setRequestProperty("User-Agent", "Your Robot Name");
      int responseCode = connection.getResponseCode();
      connection.disconnect();
      return responseCode;
    } catch (IOException ex) {
      Logger.getLogger(WebOperations.class.getName()).log(Level.INFO, "Exception at {0} {1}", new Object[]{address, ex.toString()});
      return defaultValue;
    }
  }

0
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setDoOutput(true);
            connection.setDoInput(true);
            connection.setRequestMethod("POST");

。。。。。。。

System.out.println("Value" + connection.getResponseCode());
             System.out.println(connection.getResponseMessage());
             System.out.println("content"+connection.getContent());

基本認証を使用してURLをどのように処理できますか?
Satheesh Kumar

0

java http / https url接続を使用して、Webサイトからの応答コードやその他の情報を取得できます。これもサンプルコードです。

 try {

            url = new URL("https://www.google.com"); // create url object for the given string  
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            if(https_url.startsWith("https")){
                 connection = (HttpsURLConnection) url.openConnection();
            }

            ((HttpURLConnection) connection).setRequestMethod("HEAD");
            connection.setConnectTimeout(50000); //set the timeout
            connection.connect(); //connect
            String responseMessage = connection.getResponseMessage(); //here you get the response message
             responseCode = connection.getResponseCode(); //this is http response code
            System.out.println(obj.getUrl()+" is up. Response Code : " + responseMessage);
            connection.disconnect();`
}catch(Exception e){
e.printStackTrace();
}

0

それは古い質問ですが、RESTの方法(JAX-RS)で示すことができます。

import java.util.Arrays;
import javax.ws.rs.*

(...)

Response response = client
    .target( url )
    .request()
    .get();

// Looking if response is "200", "201" or "202", for example:
if( Arrays.asList( Status.OK, Status.CREATED, Status.ACCEPTED ).contains( response.getStatusInfo() ) ) {
    // lets something...
}

(...)
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.