① 如何用java模擬網頁登入提交
我不得不使用好幾個系統,都是B/S結構的,每次登錄都需要輸入用戶名和密碼,覺得非常麻煩,考慮到其他同事也會有這樣的需求,不妨就寫個自動登錄的程序吧。之前,也考慮過使用單點登錄,幾經嘗試之後還是放棄了。
我習慣使用Java,本能地開始尋找Java的解決方法,在Google中輸入「Java自動登錄」、「Java網頁模擬登錄」、「Java Post 登錄」,結果倒是不少,內容也差不多,我嘗試很多次終究也沒有達到我預期的目標。後來,我都不知道這些代碼應該在jsp頁面中執行還是在c/s結構的程序中執行。但這些代碼確實管用。
我們先分析一下代碼,
<%@ page import="java.util.*" %>
<%@ page import="java.io.*" %>
<%@ page import="java.net.*" %>
String surl = "http://192.168.0.1:8888/oa/login.jsp";
URL url = new URL(surl);
URLConnection conn = url.openConnection();
conn.setDoOutput(true);
OutputStreamWriter out=new OutputStreamWriter(conn.getOutputStream());
String str = "username=yourname&password=123456";
out.write(str);
out.flush();
out.close();
到這里,如果在C/S結構中,且參數正確,程序能夠成功登錄到這個oa系統,要看到結果,你可以通過下面的代碼將系統伺服器返回的結果System.out.println()出來。
String sling = "";
String scontent = "";
BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8"));
while ((sling = in.readLine()) != null)
scontent += in + "\r\n";
System.out.println(scontent);
在C/S結構下,可以到得到控制台輸出了返回值,從返回內容里可以看出程序已經成功登錄,但要是把這個網址瀏覽器打開,還是得重新登錄,問題沒有得到根本解決。如果只是惡意注冊,到這里應該就達到目的了。
看樣子C/S結構下不容易實現網頁程序自動登錄,除非你在C/S程序中內嵌一個瀏覽器,直接在這個瀏覽器中自動訪問系統,應該沒有別的方法,主要問題在於我們沒有辦法共享Session。
為了便於共享Session,我們只能在瀏覽器中實現網頁自動登錄,通過上面的代碼在jsp頁面中測試,達不到預期目標。
網頁自動登錄,就是希望程序自動填充用戶名和密碼,然後以Post方式提交給登錄頁面的Form所指向的action頁面或方法。我將系統的登錄頁面的源代碼保存成一個網頁,然後在username和password文本框中設置默認值,然後通過這網頁登錄系統,測試後,發現可行。接下來,你可能已經想到了解決方法。
我們可以通過url.openConnection()建立連接,將返回的scontent列印出來,然後接著列印以下代碼:
out.println("<script type="text/javascript">\r\n");
out.println("document.getElementsByName("username")[0].value=yourname;\r\n");
out.println("document.getElementsByName("password")[0].value=123456;\r\n");
out.println("document.forms[0].submit();\r\n");
out.println("</script>\r\n");
原理很簡單,通過login.jsp將登錄頁面的全部源代碼寫在當前頁面,然後使用javascript腳本將用戶名和密碼的值填充上,最後提交表單。這樣中,終於實現了自動登錄的目標。現在我通過一個特殊的網址,例如http://192.168.0.1/login.jsp?url=,就可以自動訪問這個oa了。
你可能注意到參數url,他的值是經過加密的,內容是用戶名和密碼。當然,你也可以加上有效期,即在有效期內這個鏈接才是有效的,才可以實現自動登錄。
② 怎麼用Java爬蟲模擬登陸山大教務系統獲取自
代碼:Stringurl="/admin/main/flrpro.do";try{WebClientwebClient=newWebClient(BrowserVersion.FIREFOX_10);//設置webClient的相關參數webClient.getOptions().setJavaScriptEnabled(true);webClient.getOptions().setCssEnabled(false);webClient.setAjaxController(());//webClient.getOptions().setTimeout(50000);webClient.getOptions().(false);//模擬瀏覽器打開一個目標網址HtmlPagerootPage=webClient.getPage(url);System.out.println("為了獲取js執行的數據線程開始沉睡等待");Thread.sleep(3000);//主要是這個線程的等待因為js載入也是需要時間的System.out.println("線程結束沉睡");Stringhtml=rootPage.asText();System.out.println(html);}catch(Exceptione){}
③ java程序模擬網頁點擊某個按鈕
如果要登錄的話直接post數據就行,具體可以網路 java模擬登錄。
④ 急急急,java模擬用戶行為,字文本輸入內容後,點擊提交,獲取最終顯示的頁面,webdriver,
package main;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.ie.InternetExplorerDriver;
import org.openqa.selenium.support.ui.ExpectedCondition;
import org.openqa.selenium.support.ui.WebDriverWait;
public class Test {
public static void main(String[] args){
//創建一個WebDriver實例
System.setProperty("webdriver.ie.driver", "Driver\\IEDriverServer.exe");
WebDriver driver= new InternetExplorerDriver();
//訪問網路
driver.get("www..com");
//另一種方式
driver.navigate().to("www.google.com");
//找到文本框
WebElement element = driver.findElement(By.name("q"));
//搜索關鍵字
element.sendKeys("selenium");
//提交表單 webDriver會自動從表單中查找提交按鈕並提交
element.submit();
//檢查頁面title
System.out.println("頁面Title:"+driver.getTitle());
//設置等待時間為10秒
(new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
@Override
public Boolean apply(WebDriver d) {
// TODO Auto-generated method stub
return d.getTitle().toLowerCase().startsWith("selenium");
}
});
// 顯示查詢結果title
System.out.println("Page title is: " + driver.getTitle());
//關閉瀏覽器
driver.quit();
}
}
⑤ 怎麼用java模擬瀏覽器提交html頁面的表單數據
HttpClient模擬請求如下
HttpClienthttpclient=newDefaultHttpClient();//打開瀏覽器
HttpPosthttpPost=newHttpPost("www.xxx.xxx");//輸入網址
List<NameValuePair>nvps=newArrayList<NameValuePair>();
nvps.add(newBasicNameValuePair("userName","123"));
nvps.add(newBasicNameValuePair("password","123"));//封裝表單
httpPost.setEntity(newUrlEncodedFormEntity(nvps,"utf-8"));//將參數傳入post方法中
HttpResponseresponse=httpclient.execute(httpPost);//執行post
HttpEntityentity=response.getEntity();//獲取響應數據
Stringresult=EntityUtils.toString(entity);//將響應數據轉成字元串
需要導入jar包
純手工打字,請採納哈
⑥ java程序可以模擬指定瀏覽器發送請求嗎,怎麼做
其實模擬指定瀏覽器
就是模擬指定的User-agent
當你用httpclient發送請求時
設置header的user-agent為你瀏覽器的就可以了
希望能幫助到你
⑦ java 如何模擬瀏覽器調用rest api介面
packagecom.demo;
importjava.io.BufferedReader;
importjava.io.IOException;
importjava.io.InputStreamReader;
importjavax.xml.bind.DatatypeConverter;
importorg.apache.http.HttpResponse;
importorg.apache.http.client.methods.HttpGet;
importorg.apache.http.impl.client.DefaultHttpClient;
publicclassrestTest{
publicstaticvoidmain(String[]args){
try{
DefaultHttpClientClient=newDefaultHttpClient();
HttpGethttpGet=newHttpGet("你的地址");
Stringencoding=DatatypeConverter.printBase64Binary("admin:admin".getBytes("UTF-8"));
httpGet.setHeader("Authorization","Basic"+encoding);
HttpResponseresponse=Client.execute(httpGet);
System.out.println("response="+response);
BufferedReaderbreader=newBufferedReader(newInputStreamReader(response.getEntity().getContent()));
StringBuilderresponseString=newStringBuilder();
Stringline="";
while((line=breader.readLine())!=null){
responseString.append(line);
}
breader.close();
StringrepsonseStr=responseString.toString();
System.out.println("repsonseStr="+repsonseStr);
}catch(IOExceptione){
e.printStackTrace();
}
}
}
⑧ Java怎麼模擬登錄亞馬遜中國網站
Connection.Response res = Jsoup.connect(「登陸地址」).data("username", "你的用戶名", "password", "你的密碼").timeout(3000).method(Method.POST).execute();
Document doc = res.parse();
doc是拿到的網頁後台的代碼,再正則表達式匹配或者jsoup提取,分析得到cookie,即可模擬登陸
⑨ Java怎麼模擬登錄亞馬遜中國網站
Connection.Responseres=Jsoup.connect(「登陸地址」).data("username","你的用戶名","password","你的密碼").timeout(3000).method(Method.POST).execute();Documentdoc=res.parse();doc是拿到的網頁後台的代碼,再正則表達式匹配或者jsoup提取,分析得到cookie,即可模擬登陸