zoukankan      html  css  js  c++  java
  • http 重要代码

     URL restServiceURL = new URL(sb.toString());// 最终url
    System.out.println("finalUrl1----" + sb.toString());
    HttpURLConnection httpConnection = (HttpURLConnection) restServiceURL.openConnection();
    httpConnection.setRequestMethod("GET");
    httpConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    if (httpConnection.getResponseCode() != 200) {
    throw new RuntimeException(
    "HTTP GET Request Failed with Error code : " + httpConnection.getResponseCode());
    }
    BufferedReader responseBuffer = new BufferedReader(
    new InputStreamReader((httpConnection.getInputStream())));
    String output;
    System.out.println("Output from Server:   ");
    while ((output = responseBuffer.readLine()) != null) {
    result_count = output;
    System.out.println(output);
    }
  • 相关阅读:
    bugku 字符正则
    Bugku,never never never give up
    Bugku各种绕过哟
    BUGKU的flag.php
    7.15 Java自学
    7.14 Java自学
    7.13 Java自学
    7.12 Java自学
    7.11 Java自学
    7.10 Java自学
  • 原文地址:https://www.cnblogs.com/yongyao/p/6539997.html
Copyright © 2011-2022 走看看