Java:如何进行HTTP浏览会话

时间:2011-06-10 12:16:17

标签: java http session httpwebrequest

我正在尝试创建一个向服务器发送一些POST请求的Java应用程序。第一个请求是具有身份验证信息的请求。然后,当我发送下一个请求时,我得到了我的会话过期的答案。但我在同一秒内发送下一个请求,因此,它不能超时。

所以我猜有些类似Java中的HTTP会话,我需要用它来发送我的请求,就像服务器在上一个请求之后知道它一样。

我一直在搜索谷歌,但找不到任何东西。只有Servlets的东西。但我正在创建一个桌面应用程序。

PS:我是发送HTTP请求和新事物的新手。

提前致谢,
马亭


编辑:这是我目前使用的代码:

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStreamWriter;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.List;

/**
 *
 * @author martijn
 */
public class PostRequest {

    private String _url;
    private List<PostParameter> params;

    public PostRequest(String url) {
        this._url = url;
        this.params = new ArrayList<PostParameter>();
    }

    public void addParam(String key, String value)
    {
        params.add(new PostParameter(key, value));
    }

    public String getURL()
    {
        return _url;
    }

    public InputStream request() throws IOException {
        URL url = new URL(this._url);
        URLConnection conn = url.openConnection();
        if (params.size() > 0) {

            conn.setDoOutput(true);

            StringBuilder data = new StringBuilder();
            for (int i = 0; i < params.size(); i++) {
                if (i > 0) {
                    data.append("&");
                }
                String key = params.get(i).key;
                String value = params.get(i).value;
                data.append(URLEncoder.encode(key, "UTF-8"));
                data.append("=");
                data.append(URLEncoder.encode(value, "UTF-8"));
            }

            OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream());
            wr.write(data.toString());
            wr.flush();
        }

        return conn.getInputStream();
    }

    public class PostParameter {

        public String key;
        public String value;

        public PostParameter(String key, String value) {
            this.key = key;
            this.value = value;
        }

        public PostParameter() {
        }

        public String getKey() {
            return key;
        }

        public String getValue() {
            return value;
        }

        public void setKey(String key) {
            this.key = key;
        }

        public void setValue(String value) {
            this.value = value;
        }
    }
}

然后互相发送两个请求:

PostRequest postAuthentication = new PostRequest("http://blahblah.com");
postAuthentication.addParam("user", user);
postAuthentication.addParam("password", pass);
Utils.dumpReader(postAuthentication.request());

PostRequest postDoSomething = new PostRequest("http://blahblah.com/function.php");
postDoSomething.addParam("func", "blah");
postDoSomething.addParam("value", "14");
Utils.dumpReader(postDoSomething.request());
    // Here I'm getting the session is expired.

4 个答案:

答案 0 :(得分:4)

这些将对您有所帮助:

答案 1 :(得分:2)

如果会话ID存储在cookie中,则必须提供一种存储cookie并将其传递给第二个请求的方法。有关example中的Cookie处理,请参阅此Apache's HTTP client

答案 2 :(得分:0)

当您收到身份验证请求的答案时,您需要存储有关会话的信息 当您发送下一个请求时,您需要添加会话信息以进行请求。

http://en.wikipedia.org/wiki/HTTP_cookie

答案 3 :(得分:0)

服务器可能依赖HTTP会话Cookie(仅限)来跟踪请求。您需要分析到服务器的HTTP流量(使用浏览器时)以查看是否是这种情况。服务器通过Set-Cookie响应标头向客户端提供cookie。

如果假设为真,则需要cookie,则必须在客户端向服务器发出的每个请求中提供cookie。这是由客户端设置Cookie请求标头完成的。

我假设您正在使用Java API提供的HttpUrlConnection类。 StackOverflow在此主题上存在A very comprehensive answer by Balus。请参阅“维护会话”部分。