91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java 模擬cookie登陸簡單操作示例

發布時間:2020-10-26 05:08:15 來源:腳本之家 閱讀:198 作者:程序媛-jjl 欄目:編程語言

本文實例講述了Java 模擬cookie登陸簡單操作。分享給大家供大家參考,具體如下:

最近在做將禪道上的功能接口做到手機端,在做登陸的時候,看了禪道的源碼,是由cookie來登陸,所以要做一個模擬cookie登陸的接口,將拿到的cookie放到每次接口請求的頭部中去,就可以正常訪問了。

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

/**
 * @Author: jljiang
 * @Description:Java 模擬cookie登陸
 * @Date: Created in 2019/1/16 15:14
 */
public class ImitateLoginController {

  public static void main(String args[]) throws Exception {
    //登陸接口地址
    String loginStr = "http://zenta.51fb.com/index.php?m=user&f=login";
    /**
     * 首先要和URL下的URLConnection對話。 URLConnection可以很容易的從URL得到。比如: // Using
     * java.net.URL and //java.net.URLConnection
     */
    URL url = new URL(loginStr);
    HttpURLConnection connection = (HttpURLConnection) url.openConnection();
    connection.setDoOutput(true);
    OutputStreamWriter out = new OutputStreamWriter(connection
        .getOutputStream(), "GBK");
    //其中的account和password可以通過控制臺去查看,或者看頁面html去查看
    out.write("account=you-user-name&password=you-password");
// remember to clean up
    out.flush();
    out.close();

// 取得cookie,使用該cookie放在頭部就可以訪問其他需要登陸才可以訪問的接口了
    String cookieVal = connection.getHeaderField("Set-Cookie");

/*------------------------------------訪問其他接口-------------------------------------------------*/
    String otherUrl = "http://zenta.51fb.com/index.php?m=bug&f=browse";
    url = new URL(otherUrl);
    HttpURLConnection otherConnection = (HttpURLConnection) url.openConnection();
    if(cookieVal != null){
      otherConnection.setRequestProperty("Cookie",cookieVal);
    }
    otherConnection.connect();
    InputStream urlStream = otherConnection.getInputStream();
    BufferedReader bufferedReader = new BufferedReader(
        new InputStreamReader(urlStream));
    String content = null;
    StringBuilder total = new StringBuilder();
    while ((content = bufferedReader.readLine()) != null) {
      total.append(content);
    }
    bufferedReader.close();
    System.out.println(content);
  }
}

更多關于java算法相關內容感興趣的讀者可查看本站專題:《Java數據結構與算法教程》、《Java操作DOM節點技巧總結》、《Java文件與目錄操作技巧匯總》和《Java緩存操作技巧匯總》

希望本文所述對大家java程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

九江县| 商城县| 赤壁市| 米易县| 云霄县| 容城县| 司法| 大厂| 尼木县| 浦东新区| 沿河| 阳信县| 聂荣县| 古交市| 通城县| 元朗区| 常熟市| 谷城县| 乌苏市| 马边| 榆树市| 美姑县| 会泽县| 杂多县| 南华县| 勐海县| 江安县| 清镇市| 聊城市| 阿巴嘎旗| 高雄县| 大埔县| 蛟河市| 江永县| 陈巴尔虎旗| 美姑县| 财经| 冕宁县| 临西县| 堆龙德庆县| 仙桃市|