Java自动登录网站。不行

时间:2014-02-28 14:35:16

标签: java httpurlconnection

我想创建一个自动登录网站并执行操作的java应用程序。我正在我的localhost上测试它。我实际上是全新的,我正试图从http://www.mkyong.com/java/how-to-automate-login-a-website-java-example/获取概念并修改代码以实际为我的localhost工作。

package random;

import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.List;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

public class InternetAutomationPost {

    List<String> cookies;

    public void setCookies(List<String> cookies) {
        this.cookies = cookies;
    }

    public List<String> getCookies() {
        return cookies;
    }

    private String requestWebPage(String address) {
        try {
            URL url = new URL(address);
            HttpURLConnection con = (HttpURLConnection)url.openConnection();

            // Don't use cache. Get a fresh copy.
            con.setUseCaches(false);

            // Use post or get.
            // And default is get.
            con.setRequestMethod("GET");

            // Mimic a web browser.
            con.addRequestProperty("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8");
            con.addRequestProperty("Accept-Encoding", "gzip,deflate,sdch");
            con.addRequestProperty("Accept-Language", "en-US,en;q=0.8");
            con.addRequestProperty("Connection", "keep-alive");
            con.addRequestProperty("User-Agent", "Mozilla/5.0");
            if(cookies != null) {
                con.addRequestProperty("Cache-Control", "max-age=0");
                for (String cookie : this.cookies) {
                    System.out.print(cookie.split(";", 1)[0]);
                    con.addRequestProperty("Cookie", cookie.split(";", 1)[0]);
                }
            }

            int responseCode = con.getResponseCode();

            System.out.println("\nSending 'GET' request to URL : " + url);
            System.out.println("Response Code : " + responseCode);

            BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream()));

            String inputLine;
            StringBuilder response = new StringBuilder();
            while( (inputLine = br.readLine()) != null) {
                response.append(inputLine);
            }
            br.close();

            // Get the response cookies
            setCookies(con.getHeaderFields().get("Set-Cookie"));

            return response.toString();

        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        return "";

    }


    private String parsePage(String page) {

        Document doc;

        try {
            doc = Jsoup.parse(page);

            Elements form = doc.getElementsByAttributeValue("action", "login.php");


            List<String> paramList = new ArrayList<String>();
            for(Element loginForm : form) {
                System.out.println(loginForm.html());
                Elements Input = loginForm.getElementsByTag("input");
                for(Element input : Input) {
                    String name = input.attr("name");
                    String value = input.attr("value");

                    if(name.equals("email")) {
                        value = "admin@admin.com";
                    } else if(name.equals("password")) {
                        value = "password";
                    } else if(name.equals("")) {
                        continue;
                    }

                    paramList.add(name + "=" + URLEncoder.encode(value, "UTF-8"));
                }
            }

            StringBuilder params = new StringBuilder();
            for(String values : paramList) {
                if(params.length() == 0) {
                    params.append(values);
                } else {
                    params.append("&" + values);
                }
            }

            System.out.println("Params: " + params);

            return params.toString();

        } catch (IOException e) {
            e.printStackTrace();
        }
        return "";
    }

    private void sendPostLogin(String location, String params) {
        try {
            URL url = new URL(location);
            HttpURLConnection con = (HttpURLConnection) url.openConnection();

            // Don't use cache. Get a fresh copy.
            con.setUseCaches(false);

            // Use post or get. We use post this time.
            con.setRequestMethod("POST");

            // Mimic a web browser.
            con.addRequestProperty("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8");
            con.addRequestProperty("Accept-Encoding", "gzip,deflate,sdch");
            con.addRequestProperty("Accept-Language", "en-US,en;q=0.8");
            con.addRequestProperty("Connection", "keep-alive");
            con.addRequestProperty("User-Agent", "Mozilla/5.0");
            if(cookies != null) {
                con.addRequestProperty("Cache-Control", "max-age=0");
                for (String cookie : this.cookies) {
                    con.addRequestProperty("Cookie", cookie.split(";", 1)[0]);
                }
            }
            con.addRequestProperty("Content-Length", Integer.toString(params.length()));
            con.addRequestProperty("Content-Type", "application/x-www-form-urlencoded");
            con.addRequestProperty("Host", "localhost");
            con.addRequestProperty("Origin", "http://localhost");
            con.addRequestProperty("Referrer", "http://localhost/social/index.php");

            con.setDoOutput(true);
            con.setDoInput(true);

            // Write the parameters. Send post request.
            DataOutputStream wr = new DataOutputStream(con.getOutputStream());
            wr.writeBytes(params);
            wr.flush();
            wr.close();

            int responseCode = con.getResponseCode();

            System.out.println("\nSending 'POST' request to URL : " + url);
            System.out.println("Post parameters : " + params);
            System.out.println("Response Code : " + responseCode);


            BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream()));

            String inputLine;
            StringBuilder response = new StringBuilder();
            while( (inputLine = br.readLine()) != null) {
                response.append(inputLine);
            }
            br.close();

            // Get the response cookies
            setCookies(con.getHeaderFields().get("Set-Cookie"));

            System.out.println(response.toString());    


        } catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
    /**
     * @param args
     */
    public static void main(String[] args) {
        InternetAutomationPost object = new InternetAutomationPost();

        String page = object.requestWebPage("http://localhost/social");
        String params = object.parsePage(page);

        object.sendPostLogin("http://localhost/social/index.php", params);
    }

}

修改 找出它发送HTTP响应代码的原因:413。

con.addRequestProperty("Content-Length:", Integer.toString(params.length()));

应该是:

con.addRequestProperty("Content-Length", Integer.toString(params.length()));

有一个流浪':'。我现在已经修好了。

但仍然我的代码实际上没有登录,我仍然需要帮助。 我现在把我的完整程序放在这里。

我可能错了,但我认为params实际上并没有写入代码中的con.getOutputStream():

DataOutputStream wr = new DataOutputStream(con.getOutputStream());
                wr.writeBytes(params);
                wr.flush();
                wr.close();

1 个答案:

答案 0 :(得分:0)

您将Content-Length设置为Integer.toString(params.length())

我的猜测是,作为字节写的paramsContent-Length长,并且您的服务器接收的字节数超出预期。

尝试:

con.addRequestProperty("Content-Length:", Integer.toString(params.getBytes("UTF-8").length()));

这显然取决于您的编码。另请查看this

相关问题