HttpClient和HtmlParser配合實現自動登陸系統抽取頁面資訊
HtmlParser程式碼介面變化比較多,因此寫一個最新的。廢話不多說,貼程式碼共大家享用!
/*
* Main.java
*
* Created on 2007年1月19日, 上午9:14
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package wapproxy;
import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;
import org.apache.commons.httpclient.params.HttpMethodParams;
import java.io.*;
import org.htmlparser.Node;
import org.htmlparser.NodeFilter;
import org.htmlparser.Parser;
import org.htmlparser.filters.TagNameFilter;
import org.htmlparser.tags.*;
import org.htmlparser.util.NodeList;
import org.htmlparser.util.ParserException;
/**
*
* @author xcz
*/
public class Main {
/** Creates a new instance of Main */
public Main() {
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws Exception {
// Create an instance of HttpClient.
HttpClient client = new HttpClient();
// Create a method instance.
PostMethod post_method = new PostMethod("http://localhost/rcpq/");
NameValuePair[] data = {
new NameValuePair("username", "admin"),
new NameValuePair("password", "admin"),
new NameValuePair("dologin", "1"),
};
post_method.setRequestBody(data);
try {
// Execute the method.
int statusCode = client.executeMethod(post_method);
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: " + post_method.getStatusLine());
}
// Read the response body.
//byte[] responseBody = post_method.getResponseBody();
// Deal with the response.
// Use caution: ensure correct character encoding and is not binary data
//System.out.println(new String(responseBody));
} catch (HttpException e) {
System.err.println("Fatal protocol violation: " + e.getMessage());
e.printStackTrace();
} catch (IOException e) {
System.err.println("Fatal transport error: " + e.getMessage());
e.printStackTrace();
} finally {
// Release the connection.
post_method.releaseConnection();
}
byte[] responseBody = null;
GetMethod get_method = new GetMethod("http://localhost/rcpq/unit.php");
// Provide custom retry handler is necessary
get_method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
new DefaultHttpMethodRetryHandler(3, false));
try {
// Execute the method.
int statusCode = client.executeMethod(get_method);
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: " + get_method.getStatusLine());
}
// Read the response body.
//responseBody = get_method.getResponseBody();
//這裡用流來讀頁面
InputStream in = get_method.getResponseBodyAsStream();
if (in != null) {
byte[] tmp = new byte[4096];
int bytesRead = 0;
ByteArrayOutputStream buffer = new ByteArrayOutputStream(1024);
while ((bytesRead = in.read(tmp)) != -1) {
buffer.write(tmp, 0, bytesRead);
}
responseBody = buffer.toByteArray();
}
// Deal with the response.
// Use caution: ensure correct character encoding and is not binary data
//System.out.println(new String(responseBody));
} catch (HttpException e) {
System.err.println("Fatal protocol violation: " + e.getMessage());
e.printStackTrace();
} catch (IOException e) {
System.err.println("Fatal transport error: " + e.getMessage());
e.printStackTrace();
} finally {
// Release the connection.
get_method.releaseConnection();
}
Parser parser;
parser = Parser.createParser(new String(responseBody, "GBK"), "GBK");
String filterStr = "table";
NodeFilter filter = new TagNameFilter(filterStr);
NodeList tables = parser.extractAllNodesThatMatch(filter);
//System.out.println(tables.elementAt(17).toString());
//找到單位列表所在的表格
TableTag tabletag = (TableTag) tables.elementAt(17);
TableRow row = tabletag.getRow(3);
TableColumn[] cols = row.getColumns();
//System.out.println("單位名稱:" + cols[2].toHtml());
System.out.println("單位名稱:" + cols[2].childAt(0).getText());
}
}
Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1487602
相關文章
- 使用 HttpClient 和 HtmlParser 實現簡易爬蟲(轉載)HTTPclientHTML爬蟲
- 「手把手」利用websocket實現手機掃碼登陸後,同步登陸資訊到web端頁面Web
- 做一個php登陸頁面,用pc登陸和用手機登陸彈出來的登陸頁面不一樣。PHP
- Vue學習:實現使用者沒有登陸時,訪問後自動跳轉登入頁面Vue
- linux 實現開機自動登陸Linux
- 重寫ajax實現session超時跳轉到登陸頁面Session
- Windows自動登陸Windows
- 登陸頁面樣式佈局
- Vue-router實現單頁面應用在沒有登入情況下,自動跳轉到登入頁面Vue
- app直播原始碼,平臺登入頁面實現和修改密碼頁面實現APP原始碼密碼
- Android讀取XML實現軟體自動登陸AndroidXML
- ssh自動登陸和scp自動拷貝檔案
- 滑鼠雙擊頁面實現自動滾動效果
- 11款頁面登陸優化工具優化
- Unix檔案系統頁面監控實現-效果頁面
- webpack配合vue.js實現完整的單頁面demoWebVue.js
- 藍色主題登陸頁面介面模板
- PHP模擬登陸抓取頁面內容PHP
- DotNetNuke開發——自定義登陸頁面
- Windows如何實現登陸系統不用輸入密碼Windows密碼
- 自寫資訊管理系統—— C 實現
- 自寫資訊管理系統——C實現
- 搭建jenkins配合gitee實現自動部署JenkinsGitee
- vue實現後臺管理系統頁面功能和頁面路由許可權的控制Vue路由
- SSH 自動遠端登陸
- shell自動收集伺服器硬體系統資訊通過web頁面顯示伺服器Web
- php怎麼實現登陸後跳轉網頁PHP網頁
- Vue+Element-ui建立一個登陸頁面VueUI
- 登陸註冊頁面html程式碼(仿知乎)HTML
- Unix檔案系統頁面監控實現
- ASP.NET動態網站開發培訓-40.互動論壇製作(八、登陸頁面和管理主頁面)ASP.NET網站
- securt crt 自動登陸指令碼指令碼
- JS實現登陸介面JS
- 【PB登陸的實現】
- 直播系統app原始碼,Android studio 實現app登入註冊頁面APP原始碼Android
- C#三種模擬自動登入和提交POST資訊的實現方法C#
- 搭建自動化 Web 頁面效能檢測系統 —— 部署篇Web
- Flutter開始干係列-實現一個登陸頁Flutter