我有一个服务器,我必须先登录(第一个 URL),然后我将发送另一个 POST 请求(第二个 URL),但是只有在我仍然登录的情况下才能完成这个 post 请求。如何仍然记录使用 URL 2 的 POST 请求?
这是代码:
HttpURLConnection con=(HttpURLConnection) new URL("http://Login(URL1)").openConnection();
String headerName=null; String cookie=null;
for (int i=1; (headerName = con.getHeaderFieldKey(i))!=null; i++) {
if (headerName.equals("Set-Cookie"))
cookie = con.getHeaderField(i);
}
cookie = cookie.substring(0, cookie.indexOf(";"));
String cookieName = cookie.substring(0, cookie.indexOf("="));
String cookieValue = cookie.substring(cookie.indexOf("=") + 1, cookie.length());
System.out.println(cookieName);
System.out.println(cookieValue);
con=(HttpURLConnection) new URL("http://Login(URL1)").openConnection();
con.setRequestMethod("POST");
con.setRequestProperty("Cookie", "session_id=" + cookieValue);
con.setDoInput(true);
con.setDoOutput(true);
PrintWriter writer = new PrintWriter(con.getOutputStream());
String account = "sdfsdf";
String password = "sddfdsf";
writer.println("&username=" + account + "&password=" + password + "&action=do_login&http=1");
writer.close();
System.err.println(con.getResponseCode());
BufferedReader reader=new BufferedReader(new InputStreamReader(con.getInputStream()));
String response;
while ((response=reader.readLine())!=null) {
System.out.println(response);
}
reader.close();
con=(HttpURLConnection) new URL("http://POST Request URL").openConnection();
con.setRequestMethod("POST")