Login on website with java

后端 未结 2 1213
萌比男神i
萌比男神i 2020-12-15 13:37

I would like to login to a website with java. I use the org.apache.http and I already written

HttpClient client = new DefaultHttpClient();
HttpPost post = ne         


        
2条回答
  •  悲哀的现实
    2020-12-15 14:40

    I suggest you to use htmlunit:

    HtmlUnit is a "GUI-Less browser for Java programs". It models HTML documents and provides an API that allows you to invoke pages, fill out forms, click links, etc... just like you do in your "normal" browser.

    It has fairly good JavaScript support (which is constantly improving) and is able to work even with quite complex AJAX libraries, simulating either Firefox or Internet Explorer depending on the configuration you want to use.

    It is typically used for testing purposes or to retrieve information from web sites.

提交回复
热议问题