HttpURLConnection 方式模拟论坛发帖~帖子发表成功了~用BufferedReader每次读取getInputStream()读取数据为空怎么回事?
HttpURLConnection conn = createConnection(url, props, proxy);
OutputStream out = new BufferedOutputStream(conn.getOutputStream());
out.write(paserParams(params).getBytes());
out.flush();
out.close();
return conn;
这是post方法,但是你应该用get吧
模拟的一点都不好,怎么可能拿到数据呢,
conn.setRequestProperty("Cookie", sessionId); Cookie的内容确定是这个?
sb.append("formhash=" + hidden0 + ""); 这个不知道你怎么拿来的,应该是页面上动态抓取的,每次的页面值应该不一样,hidden0也要转码。
br1 , conn也不关闭
如果想学习的话,装个firebug,里面能够监控http请求的所有信息,包括消息头Cookie,POST还是GET提交,以及参数等等。