怎样用java获取URL返回状态码

 我来答
ahcc08
推荐于2017-11-27 · 知道合伙人软件行家
ahcc08
知道合伙人软件行家
采纳数:11853 获赞数:51935
拥有丰富的软件开发经验。

向TA提问 私信TA
展开全部
//  用getResponseCode可以获取URL返回状态码
String surl = "";
try {
       surl="你的url";
               URL url = new URL(surl);
               URLConnection rulConnection   = url.openConnection();
               HttpURLConnection httpUrlConnection  =  (HttpURLConnection) rulConnection;
               httpUrlConnection.setConnectTimeout(300000);
               httpUrlConnection.setReadTimeout(300000);
               httpUrlConnection.connect();
               String code = new Integer(httpUrlConnection.getResponseCode()).toString();
               String message = httpUrlConnection.getResponseMessage();
               System.out.println("getResponseCode code ="+ code);
               System.out.println("getResponseMessage message ="+ message);
               if(!code.startsWith("2")){
                    throw new Exception("ResponseCode is not begin with 2,code="+code);
               }
               System.out.println(getCurDateTime()+"连接"+surl+"正常");
          }catch(Exception ex){
               System.out.println(ex.getMessage());
          }
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式