java1234开源博客系统
博客信息

htmlunit 获取指定元素

发布时间:『 2017-04-07 11:06』  博客类别:htmlunit  阅读(8198) 评论(0)

htmlunit 提供了丰富的api来获取指定元素 jsoup有的  htmlunit也有;


我们这里举例:

package com.open1111;


import java.io.IOException;
import java.net.MalformedURLException;

import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.DomElement;
import com.gargoylesoftware.htmlunit.html.DomNodeList;
import com.gargoylesoftware.htmlunit.html.HtmlDivision;
import com.gargoylesoftware.htmlunit.html.HtmlListItem;
import com.gargoylesoftware.htmlunit.html.HtmlPage;

public class HtmlUnitTest2 {

	public static void main(String[] args) {
		WebClient webClient=new WebClient(BrowserVersion.FIREFOX_52); // 实例化Web客户端	
		try {
			HtmlPage page=webClient.getPage("http://www.java1234.com");
			HtmlDivision div=page.getHtmlElementById("navMenu");  // 查找指定id的html dom元素
			System.out.println(div.asXml());
			System.out.println("======================");
			DomNodeList<DomElement> aList=page.getElementsByTagName("a"); // 根据tag名称查询所有tag
			for(int i=0;i<aList.getLength();i++){
				DomElement a=aList.get(i);
				System.out.println(a.asXml());
			}
			System.out.println("======================");
			HtmlListItem item =(HtmlListItem) page.getByXPath("//div[@id='navMenu'][1]/ul/li").get(0); // xpath方式
			System.out.println(item.asXml());
		} catch (FailingHttpStatusCodeException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (MalformedURLException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}finally{
			webClient.close();
		}
	}
		
}

运行输出:

四月 07, 2017 11:02:50 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'application/x-javascript'.

四月 07, 2017 11:02:51 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'application/x-javascript'.

四月 07, 2017 11:02:51 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'application/x-javascript'.

四月 07, 2017 11:02:51 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:1158] Error in style rule. (Invalid token "/". Was expecting one of: <EOF>, <S>, <IDENT>, "}", ";", "*".)

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler warning

警告: CSS warning: 'http://www.java1234.com/' [1:1158] Ignoring the following declarations in this rule.

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:2804] Error in expression. (Invalid token ";". Was expecting one of: <S>, <NUMBER>, "inherit", <IDENT>, <STRING>, "-", <PLUS>, <HASH>, <EMS>, <EXS>, <LENGTH_PX>, <LENGTH_CM>, <LENGTH_MM>, <LENGTH_IN>, <LENGTH_PT>, <LENGTH_PC>, <ANGLE_DEG>, <ANGLE_RAD>, <ANGLE_GRAD>, <TIME_MS>, <TIME_S>, <FREQ_HZ>, <FREQ_KHZ>, <RESOLUTION_DPI>, <RESOLUTION_DPCM>, <PERCENTAGE>, <DIMENSION>, <UNICODE_RANGE>, <URI>, <FUNCTION>, "progid:".)

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:2811] Error in expression. (Invalid token ";". Was expecting one of: <S>, <NUMBER>, "inherit", <IDENT>, <STRING>, "-", <PLUS>, <HASH>, <EMS>, <EXS>, <LENGTH_PX>, <LENGTH_CM>, <LENGTH_MM>, <LENGTH_IN>, <LENGTH_PT>, <LENGTH_PC>, <ANGLE_DEG>, <ANGLE_RAD>, <ANGLE_GRAD>, <TIME_MS>, <TIME_S>, <FREQ_HZ>, <FREQ_KHZ>, <RESOLUTION_DPI>, <RESOLUTION_DPCM>, <PERCENTAGE>, <DIMENSION>, <UNICODE_RANGE>, <URI>, <FUNCTION>, "progid:".)

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:2816] Error in expression. (Invalid token ";". Was expecting one of: <S>, <NUMBER>, "inherit", <IDENT>, <STRING>, "-", <PLUS>, <HASH>, <EMS>, <EXS>, <LENGTH_PX>, <LENGTH_CM>, <LENGTH_MM>, <LENGTH_IN>, <LENGTH_PT>, <LENGTH_PC>, <ANGLE_DEG>, <ANGLE_RAD>, <ANGLE_GRAD>, <TIME_MS>, <TIME_S>, <FREQ_HZ>, <FREQ_KHZ>, <RESOLUTION_DPI>, <RESOLUTION_DPCM>, <PERCENTAGE>, <DIMENSION>, <UNICODE_RANGE>, <URI>, <FUNCTION>, "progid:".)

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:2824] Error in expression. (Invalid token ";". Was expecting one of: <S>, <NUMBER>, "inherit", <IDENT>, <STRING>, "-", <PLUS>, <HASH>, <EMS>, <EXS>, <LENGTH_PX>, <LENGTH_CM>, <LENGTH_MM>, <LENGTH_IN>, <LENGTH_PT>, <LENGTH_PC>, <ANGLE_DEG>, <ANGLE_RAD>, <ANGLE_GRAD>, <TIME_MS>, <TIME_S>, <FREQ_HZ>, <FREQ_KHZ>, <RESOLUTION_DPI>, <RESOLUTION_DPCM>, <PERCENTAGE>, <DIMENSION>, <UNICODE_RANGE>, <URI>, <FUNCTION>, "progid:".)

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:2831] Error in expression. (Invalid token ";". Was expecting one of: <S>, <NUMBER>, "inherit", <IDENT>, <STRING>, "-", <PLUS>, <HASH>, <EMS>, <EXS>, <LENGTH_PX>, <LENGTH_CM>, <LENGTH_MM>, <LENGTH_IN>, <LENGTH_PT>, <LENGTH_PC>, <ANGLE_DEG>, <ANGLE_RAD>, <ANGLE_GRAD>, <TIME_MS>, <TIME_S>, <FREQ_HZ>, <FREQ_KHZ>, <RESOLUTION_DPI>, <RESOLUTION_DPCM>, <PERCENTAGE>, <DIMENSION>, <UNICODE_RANGE>, <URI>, <FUNCTION>, "progid:".)

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:3577] Error in declaration. '*' is not allowed as first char of a property.

四月 07, 2017 11:02:52 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/' [1:3590] Error in declaration. '*' is not allowed as first char of a property.

四月 07, 2017 11:02:54 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/templets/default/style/dedecms.css' [436:2] Error in declaration. '*' is not allowed as first char of a property.

四月 07, 2017 11:03:02 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/templets/default/style/layout.css' [32:20] Error in style rule. (Invalid token "!important". Was expecting one of: <EOF>, <S>, <IDENT>, "}", ";", "*".)

四月 07, 2017 11:03:02 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler warning

警告: CSS warning: 'http://www.java1234.com/templets/default/style/layout.css' [32:20] Ignoring the following declarations in this rule.

四月 07, 2017 11:03:02 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/templets/default/style/page.css' [40:2] Error in declaration. '*' is not allowed as first char of a property.

四月 07, 2017 11:03:02 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/templets/default/style/page.css' [69:8] Error in expression; ':' found after identifier "margin".

四月 07, 2017 11:03:02 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/templets/default/style/page.css' [204:2] Error in declaration. '*' is not allowed as first char of a property.

四月 07, 2017 11:03:02 上午 com.gargoylesoftware.htmlunit.DefaultCssErrorHandler error

警告: CSS error: 'http://www.java1234.com/templets/default/style/page.css' [1306:2] Error in declaration. '*' is not allowed as first char of a property.

四月 07, 2017 11:03:03 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:03 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:03 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:03 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:04 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:04 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:04 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:04 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:04 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

四月 07, 2017 11:03:04 上午 com.gargoylesoftware.htmlunit.IncorrectnessListenerImpl notify

警告: Obsolete content type encountered: 'text/javascript'.

<div id="navMenu">

  <ul>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="/">

        <span>

          主页

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="/a/kaiyuan/" rel="dropmenu44">

        <span>

          Java开源项目分享

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="/a/yuanchuang/" rel="dropmenu52">

        <span>

          Java1234原创视频教程

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="/a/javabook/" rel="dropmenu64">

        <span>

          Java文档

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="/a/javaziliao/" rel="dropmenu41">

        <span>

          Java视频教程

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="/a/bysj/" rel="dropmenu49">

        <span>

          Java毕业设计

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="http://www.java1234.com/java1234er.html" target="_blank">

        <span>

          招收java1234门徒

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="http://www.java1234.com/javaxuexiluxiantu.html" target="_blank">

        <span style="color:yellow">

          java学习路线图

        </span>

      </a>

    </li>

    <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

      <a href="http://www.bjsxt.com/" target="_blank">

        <span style="color:yellow">

          java培训

        </span>

      </a>

    </li>

    <!--   <li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;"><a href='http://javapeixun.up4g.com/?tg=7006213605&from=java1234' target="_blank"><span style="color:yellow">java课程免费试学</span></a></li>-->  </ul>

</div>


======================

<a href="http://www.java1234.com/javapachongxuexiluxiantu.html" target="_blank">

  <font color="red">

    Java爬虫学习路线图

  </font>

</a>


<a href="" onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://www.java1234.com');">

  设为首页

</a>


<a href="javascript:window.external.AddFavorite('http://www.java1234.com','Java知识分享网')">

  加入收藏

</a>


<a href="http://wpa.qq.com/msgrd?v=3&amp;uin=527085608&amp;site=qq&amp;menu=yes" target="_blank">

  广告业务

</a>


<a href="http://www.java1234.com">

  <img src="http://www.java1234.com/images/logo.jpg" height="74" width="216" alt="Java知识分享网" data-bd-imgshare-binded="1"/>

</a>


<a target="_blank" href="//shang.qq.com/wpa/qunwpa?idkey=81b38d9fb055c96e21972ecd01bccb54ff01aead6efb6f77877e532f32e4fbeb">

  <img border="0" src="//pub.idqqimg.com/wpa/images/group.png" alt="java1234官方群19" title="java1234官方群19" data-bd-imgshare-binded="1"/>

</a>


<a href="/">

  <span>

    主页

  </span>

</a>


<a href="/a/kaiyuan/" rel="dropmenu44">

  <span>

    Java开源项目分享

  </span>

</a>


<a href="/a/yuanchuang/" rel="dropmenu52">

  <span>

    Java1234原创视频教程

  </span>

</a>


<a href="/a/javabook/" rel="dropmenu64">

  <span>

    Java文档

  </span>

</a>


<a href="/a/javaziliao/" rel="dropmenu41">

  <span>

    Java视频教程

  </span>

</a>


<a href="/a/bysj/" rel="dropmenu49">

  <span>

    Java毕业设计

  </span>

</a>


<a href="http://www.java1234.com/java1234er.html" target="_blank">

  <span>

    招收java1234门徒

  </span>

</a>


<a href="http://www.java1234.com/javaxuexiluxiantu.html" target="_blank">

  <span style="color:yellow">

    java学习路线图

  </span>

</a>


<a href="http://www.bjsxt.com/" target="_blank">

  <span style="color:yellow">

    java培训

  </span>

</a>


<a href="http://www.bjpowernode.com/?java1234" target="_blank">

  <img src="http://www.java1234.com/gg/dljd4.gif" data-bd-imgshare-binded="1"/>

</a>


<a href="http://jar.open1111.com" target="_blank" style="text-decoration: none;padding: 12px;">

  <font color="red" style="color: red;font-family: 'Microsoft Yahei',Arial;">

    <h2 style="display: inline;">

      Java爬虫采集Jar包系统

    </h2>

  </font>

</a>


<a href="http://blog.java1234.com/index.html" target="_blank" style="text-decoration: none;padding: 12px;">

  <font color="red" style="color: #436206;font-family: 'Microsoft Yahei',Arial;">

    <h2 style="display: inline;">

      Java开源博客系统

    </h2>

  </font>

</a>


<a href="http://www.java1234.com/easyui.html" target="_blank" style="text-decoration: none;padding: 12px;">

  <font color="red" style="color: #436206;font-family: 'Microsoft Yahei',Arial;">

    <h2 style="display: inline;">

      EasyUI中文示例文档

    </h2>

  </font>

</a>


<a href="http://pan.open1111.com" target="_blank" style="text-decoration: none;padding: 12px;">

  <font color="red" style="color: red;font-family: 'Microsoft Yahei',Arial;">

    <h2 style="display: inline;">

      百度云搜索引擎V2.0

    </h2>

  </font>

</a>


<a href="http://www.java1234.com/javaxuexiluxiantu.html" target="_blank" style="text-decoration: none;padding: 12px;">

  <font color="red" style="color: #436206;font-family: 'Microsoft Yahei',Arial;">

    <h2 style="display: inline;">

      Java学习路线图(Java1234官方)

    </h2>

  </font>

</a>


<a href="http://www.java1234.com/vipzy.html" target="_blank" style="text-decoration: none;padding: 12px;">

  <font color="red" style="color: red;font-family: 'Microsoft Yahei',Arial;">

    <h2 style="display: inline;">

      Java1234 VIP资源!

    </h2>

  </font>

</a>


<a href="http://www.bjsxt.com/download.html?java1234" target="_blank">

  <img src="http://www.java1234.com/gg/sxt2.jpg" data-bd-imgshare-binded="1"/>

</a>


<a title="【SSM实用网站CMS内容管理系统】视频教程第二十" href="/a/yuanchuang/open1111/2017/0406/7889.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理

  </font>

</a>


<a href="/a/yuanchuang/open1111/2017/0406/7889.html">

  [查看全文]

</a>


<a title="【一头扎进Log4j】视频教程第三讲(完结)" href="/a/yuanchuang/log4j/2017/0401/7866.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程

  </font>

</a>


<a title="【java爬虫采集Jar包系统】视频教程第二十讲" href="/a/yuanchuang/jar/2017/0331/7853.html">

  <font color="#FF0000">

    【java爬虫采集Jar包系统】

  </font>

</a>


<a title="【SSM实用网站CMS内容管理系统】视频教程第二十" href="/a/yuanchuang/open1111/2017/0330/7847.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理

  </font>

</a>


<a title="【一头扎进Log4j】视频教程第二讲" href="/a/yuanchuang/log4j/2017/0329/7837.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程

  </font>

</a>


<a title="HTML5过关小游戏 源码下载" href="/a/kaiyuan/sucai/2017/0406/7888.html">

  HTML5过关小游戏 源码下载

</a>


<a title="Learning Unreal Engine Android Game Development PDF 下载" href="/a/javabook/andriod/2017/0406/7887.html">

  Learning Unreal Engine Android Ga

</a>


<a title="SQL语句学习入门到进阶 PDF 下载" href="/a/javabook/database/2017/0406/7886.html">

  SQL语句学习入门到进阶 PD

</a>


<a title="JavaScript基础教程第8版 PDF 下载" href="/a/javabook/webbase/2017/0406/7885.html">

  JavaScript基础教程第8版 PDF

</a>


<a title="HTML,XHTML,CSS与JavaScript入门经典 PDF 下载" href="/a/javabook/webbase/2017/0405/7884.html">

  HTML,XHTML,CSS与JavaScript入门经

</a>


<a title="ZooKeeper管理员指南 PDF 下载" href="/a/javabook/yun/2017/0405/7883.html">

  ZooKeeper管理员指南 PDF 下载

</a>


<a title="HTML5+CSS3登陆界面源码 下载" href="/a/kaiyuan/sucai/2017/0405/7882.html">

  HTML5+CSS3登陆界面源码 下载

</a>


<a title="OSGi and Equinox:Creating Highly Modular Java Systems PDF 下" href="/a/javabook/javabase/2017/0404/7881.html">

  OSGi and Equinox:Creating Highl

</a>


<a title="UI与交互设计 PDF 下载" href="/a/javabook/javabase/2017/0404/7880.html">

  UI与交互设计 PDF 下载

</a>


<a title="编译系统透视:图解编译原理 PDF 下载" href="/a/javabook/javabase/2017/0404/7879.html">

  编译系统透视:图解编译原

</a>


<a title="深入浅出面向对象分析与设计(中文版) PDF 下载" href="/a/javabook/javabase/2017/0404/7878.html">

  深入浅出面向对象分析与设

</a>


<a title="Java程序性能优化  让你的Java程序更快、更稳定" href="/a/javabook/javabase/2017/0404/7877.html">

  Java程序性能优化  让你的

</a>


<a title="代码大全2中文版 PDF 下载" href="/a/javabook/javabase/2017/0404/7876.html">

  代码大全2中文版 PDF 下载

</a>


<a title="多处理器编程的艺术 PDF 下载" href="/a/javabook/javabase/2017/0404/7875.html">

  多处理器编程的艺术 PDF 下

</a>


<a href="/a/yuanchuang/open1111/2017/0406/7889.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理

  </font>

</a>


<a href="/a/bysj/javaweb/2016/0815/6552.html">

  <font color="#FF0000">

    JavaWeb图书馆管理系统【

  </font>

</a>


<a href="/a/yuanchuang/log4j/2017/0401/7866.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程

  </font>

</a>


<a href="/a/yuanchuang/jar/2017/0331/7853.html">

  <font color="#FF0000">

    【java爬虫采集Jar包系统】

  </font>

</a>


<a href="/a/yuanchuang/open1111/2017/0330/7847.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理

  </font>

</a>


<a href="/a/yuanchuang/log4j/2017/0329/7837.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程

  </font>

</a>


<a href="http://www.java1234.com/javaxuexiluxiantu.html" target="_blank">

  <img src="http://www.java1234.com/images/javaline.gif" data-bd-imgshare-binded="1"/>

</a>


<a href="/a/kaiyuan/">

  Java开源项目分享

</a>


<a href="/a/kaiyuan/">

  更多...

</a>


<a title="HTML5过关小游戏 源码下载" href="/a/kaiyuan/sucai/2017/0406/7888.html">

  HTML5过关小游戏 源码下载

</a>


<a title="HTML5+CSS3登陆界面源码 下载" href="/a/kaiyuan/sucai/2017/0405/7882.html">

  HTML5+CSS3登陆界面源码 下载

</a>


<a title="后台管理HTML静态网页模版 源码下载" href="/a/kaiyuan/sucai/2017/0322/7787.html">

  后台管理HTML静态网页模版 源码下载

</a>


<a title="信息管理系统HTML静态网页后台管理模版 源码下载" href="/a/kaiyuan/sucai/2017/0322/7786.html">

  <font color="#FF0000">

    信息管理系统HTML静态网页后台管理模版 源码下载

  </font>

</a>


<a title="仿QQ的聊天界面HTML5源码 下载" href="/a/kaiyuan/sucai/2017/0320/7775.html">

  仿QQ的聊天界面HTML5源码 下载

</a>


<a title="阿里风格平台全套完整模板 源码下载" href="/a/kaiyuan/sucai/2017/0309/7703.html">

  阿里风格平台全套完整模板 源码下载

</a>


<a title="HTML5_jQuery Mobile模板 源码下载" href="/a/kaiyuan/sucai/2017/0308/7688.html">

  HTML5_jQuery Mobile模板 源码下载

</a>


<a title="网站视频播放HTML5页面 源码下载" href="/a/kaiyuan/sucai/2017/0304/7670.html">

  网站视频播放HTML5页面 源码下载

</a>


<a href="/a/yuanchuang/">

  Java1234原创视频教程

</a>


<a href="/a/yuanchuang/">

  更多...

</a>


<a title="【SSM实用网站CMS内容管理系统】视频教程第二十" href="/a/yuanchuang/open1111/2017/0406/7889.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理系统】视频教程第二十

  </font>

</a>


<a title="【一头扎进Log4j】视频教程第三讲(完结)" href="/a/yuanchuang/log4j/2017/0401/7866.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程第三讲(完结)

  </font>

</a>


<a title="【java爬虫采集Jar包系统】视频教程第二十讲" href="/a/yuanchuang/jar/2017/0331/7853.html">

  <font color="#FF0000">

    【java爬虫采集Jar包系统】视频教程第二十讲

  </font>

</a>


<a title="【SSM实用网站CMS内容管理系统】视频教程第二十" href="/a/yuanchuang/open1111/2017/0330/7847.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理系统】视频教程第二十

  </font>

</a>


<a title="【一头扎进Log4j】视频教程第二讲" href="/a/yuanchuang/log4j/2017/0329/7837.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程第二讲

  </font>

</a>


<a title="【java爬虫采集Jar包系统】视频教程第十九讲" href="/a/yuanchuang/jar/2017/0328/7830.html">

  <font color="#FF0000">

    【java爬虫采集Jar包系统】视频教程第十九讲

  </font>

</a>


<a title="【SSM实用网站CMS内容管理系统】视频教程第二十" href="/a/yuanchuang/open1111/2017/0326/7821.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理系统】视频教程第二十

  </font>

</a>


<a title="【java爬虫采集Jar包系统】视频教程第十八讲" href="/a/yuanchuang/jar/2017/0324/7805.html">

  <font color="#FF0000">

    【java爬虫采集Jar包系统】视频教程第十八讲

  </font>

</a>


<a href="/a/javabook/">

  Java文档

</a>


<a href="/a/javabook/">

  更多...

</a>


<a title="Learning Unreal Engine Android Game Development PDF 下载" href="/a/javabook/andriod/2017/0406/7887.html">

  Learning Unreal Engine Android Game Development PDF 下载

</a>


<a title="SQL语句学习入门到进阶 PDF 下载" href="/a/javabook/database/2017/0406/7886.html">

  SQL语句学习入门到进阶 PDF 下载

</a>


<a title="JavaScript基础教程第8版 PDF 下载" href="/a/javabook/webbase/2017/0406/7885.html">

  JavaScript基础教程第8版 PDF 下载

</a>


<a title="HTML,XHTML,CSS与JavaScript入门经典 PDF 下载" href="/a/javabook/webbase/2017/0405/7884.html">

  HTML,XHTML,CSS与JavaScript入门经典 PDF 下载

</a>


<a title="ZooKeeper管理员指南 PDF 下载" href="/a/javabook/yun/2017/0405/7883.html">

  ZooKeeper管理员指南 PDF 下载

</a>


<a title="OSGi and Equinox:Creating Highly Modular Java Systems PDF 下" href="/a/javabook/javabase/2017/0404/7881.html">

  OSGi and Equinox:Creating Highly Modular Java Systems PDF 下

</a>


<a title="UI与交互设计 PDF 下载" href="/a/javabook/javabase/2017/0404/7880.html">

  UI与交互设计 PDF 下载

</a>


<a title="编译系统透视:图解编译原理 PDF 下载" href="/a/javabook/javabase/2017/0404/7879.html">

  编译系统透视:图解编译原理 PDF 下载

</a>


<a href="/a/javaziliao/">

  Java视频教程

</a>


<a href="/a/javaziliao/">

  更多...

</a>


<a title="mysql5.1中文手册 CHM下载" href="/a/javaziliao/shuji/2013/1106/1020.html">

  <font color="#FF0000">

    mysql5.1中文手册 CHM下载

  </font>

</a>


<a title="Java大数据视频教程 无加密 下载" href="/a/javaziliao/shiping/2017/0403/7873.html">

  <font color="#FF0000">

    Java大数据视频教程 无加密 下载

  </font>

</a>


<a title="高级软件工程师面试题 DOC 下载" href="/a/javaziliao/bishi/2017/0331/7857.html">

  高级软件工程师面试题 DOC 下载

</a>


<a title="【动力节点】Maven视频教程 下载" href="/a/javaziliao/javaweb/2017/0329/7836.html">

  <font color="#FF0000">

    【动力节点】Maven视频教程 下载

  </font>

</a>


<a title="尚硅谷视频教程打包下载 DOC 下载" href="/a/javaziliao/shiping/2017/0325/7820.html">

  尚硅谷视频教程打包下载 DOC 下载

</a>


<a title="2017Java常考面试题 DOC 下载" href="/a/javaziliao/bishi/2017/0321/7777.html">

  2017Java常考面试题 DOC 下载

</a>


<a title="oracle的面试问题 TXT 下载" href="/a/javaziliao/bishi/2017/0318/7770.html">

  oracle的面试问题 TXT 下载

</a>


<a title="[尚学堂]视频教程汇总" href="/a/javaziliao/shiping/2013/0427/307.html">

  [尚学堂]视频教程汇总

</a>


<a href="/a/bysj/">

  Java毕业设计

</a>


<a href="/a/bysj/">

  更多...

</a>


<a title="JavaWeb图书馆管理系统【java1234_小锋】" href="/a/bysj/javaweb/2016/0815/6552.html">

  <font color="#FF0000">

    JavaWeb图书馆管理系统【java1234_小锋】

  </font>

</a>


<a title="JavaWeb客户关系管理系统【java1234_小锋】" href="/a/bysj/javaweb/2016/0316/5826.html">

  <font color="#FF0000">

    JavaWeb客户关系管理系统【java1234_小锋】

  </font>

</a>


<a title="JavaWeb设备管理系统【java1234_小锋】" href="/a/bysj/javaweb/2015/0507/4173.html">

  <font color="#FF0000">

    JavaWeb设备管理系统【java1234_小锋】

  </font>

</a>


<a title="JavaWeb机票订购系统【java1234_小锋】" href="/a/bysj/javaweb/2015/0501/4142.html">

  <font color="#FF0000">

    JavaWeb机票订购系统【java1234_小锋】

  </font>

</a>


<a title="JavaWeb学生选课系统【java1234_小锋】" href="/a/bysj/javaweb/2015/0328/3937.html">

  <font color="#FF0000">

    JavaWeb学生选课系统【java1234_小锋】

  </font>

</a>


<a title="JavaWeb基于角色的权限系统V1.0【java1234_小锋】" href="/a/bysj/javaweb/2014/0119/1484.html">

  <font color="#FF0000">

    JavaWeb基于角色的权限系统V1.0【java1234_小锋】

  </font>

</a>


<a title="JavaWeb日记本系统【java1234_小锋】" href="/a/bysj/javaweb/2014/0401/1896.html">

  <font color="#FF0000">

    JavaWeb日记本系统【java1234_小锋】

  </font>

</a>


<a title="JavaWeb商城系统【java1234_小锋】" href="/a/bysj/javaweb/2015/0209/3704.html">

  <font color="#FF0000">

    JavaWeb商城系统【java1234_小锋】

  </font>

</a>


<a title="【SSM实用网站CMS内容管理系统】视频教程第二十" href="/a/yuanchuang/open1111/2017/0406/7889.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理系统】视

  </font>

</a>


<a title="JavaWeb图书馆管理系统【java1234_小锋】" href="/a/bysj/javaweb/2016/0815/6552.html">

  <font color="#FF0000">

    JavaWeb图书馆管理系统【java1234_小锋

  </font>

</a>


<a title="【一头扎进Log4j】视频教程第三讲(完结)" href="/a/yuanchuang/log4j/2017/0401/7866.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程第三讲

  </font>

</a>


<a title="【java爬虫采集Jar包系统】视频教程第二十讲" href="/a/yuanchuang/jar/2017/0331/7853.html">

  <font color="#FF0000">

    【java爬虫采集Jar包系统】视频教程

  </font>

</a>


<a title="【SSM实用网站CMS内容管理系统】视频教程第二十" href="/a/yuanchuang/open1111/2017/0330/7847.html">

  <font color="#FF0000">

    【SSM实用网站CMS内容管理系统】视

  </font>

</a>


<a title="【一头扎进Log4j】视频教程第二讲" href="/a/yuanchuang/log4j/2017/0329/7837.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程第二讲

  </font>

</a>


<a title="【动力节点】Maven视频教程 下载" href="/a/javaziliao/javaweb/2017/0329/7836.html">

  <font color="#FF0000">

    【动力节点】Maven视频教程 下载

  </font>

</a>


<a title="【java爬虫采集Jar包系统】视频教程第十九讲" href="/a/yuanchuang/jar/2017/0328/7830.html">

  <font color="#FF0000">

    【java爬虫采集Jar包系统】视频教程

  </font>

</a>


<a title="Android优秀简历模版 DOC 下载" href="/a/javabook/andriod/2017/0326/7824.html">

  Android优秀简历模版 DOC 下载

</a>


<a title="经典JavaEE企业应用实战-基于 WebLogic JBoss的JSF+EJ" href="/a/javabook/javaweb/2017/0318/7767.html">

  经典JavaEE企业应用实战-基于 WebLo

</a>


<a title="【一头扎进Log4j】视频教程第三讲(完结)" href="/a/yuanchuang/log4j/2017/0401/7866.html">

  <font color="#FF0000">

    【一头扎进Log4j】视频教程第三讲

  </font>

</a>


<a title="Android 4.0网络编程详解 PDF 下载" href="/a/javabook/andriod/2017/0402/7867.html">

  Android 4.0网络编程详解 PDF 下载

</a>


<a title="Reactive Design Patterns PDF 下载" href="/a/javabook/javabase/2017/0317/7752.html">

  Reactive Design Patterns PDF 下载

</a>


<a title="深入浅出面向对象分析与设计(中文版) PDF 下载" href="/a/javabook/javabase/2017/0404/7878.html">

  深入浅出面向对象分析与设计(中文

</a>


<a href="#" _for="flink_1" class="thisclass">

  IT网站

</a>


<a href="http://www.bjsxt.com/" target="_blank">

  尚学堂

</a>


<a href="http://www.cdxcr.cn/" target="_blank">

  成都UI设计

</a>



<a href="http://pan.open1111.com" target="_blank">

  百度云搜索

</a>


<a href="https://www.mysubmail.com/" target="_blank">

  云通信

</a>


<a href="http://bj.kezhanwang.cn/" target="_blank">

  北京培训网

</a>


<a href="http://www.wanho.net/" target="_blank">

  南京Java培训

</a>


<a href="http://www.idcs.cn" target="_blank">

  西安云服务器

</a>


<a href="http://c.itcast.cn/" target="_blank">

  传智播客C++

</a>


<a href="http://www.elsyy.com" target="_blank">

  在线学习平台

</a>


<a href="http://pan.java1234.com/" target="_blank">

  网盘搜索

</a>


<a href="http://www.jeecg.org" target="_blank">

  jeecg微云开发

</a>


<a href="http://www.itjiaocheng.com" target="_blank">

  java视频教程

</a>


<a href="http://www.jsshare.com" target="_blank">

  js网页特效分享网

</a>


<a href="http://www.maiziedu.com" target="_blank">

  IT在线教育

</a>


<a href="http://www.laomaotao.org" target="_blank">

  老毛桃winpe

</a>


<a href="http://weixin.itokit.com" target="_blank">

  微管家

</a>


<a href="http://www.banshier.com" target="_blank">

  办事儿网

</a>


<a href="http://bbs.it-home.org/" target="_blank">

  IT论坛

</a>


<a href="http://www.itheima.com/" target="_blank">

  java教程

</a>


<a href="http://www.zuidaima.com/" target="_blank">

  最代码

</a>


<a href="http://www.proginn.com/" target="_blank">

  程序员客栈

</a>


<a href="http://www.javaxxz.com" target="_blank">

  Java学习者论坛

</a>


<a href="http://mos.meituan.com" target="_blank">

  美团云

</a>


<a href="http://www.shiyanlou.com" target="_blank">

  实验楼IT在线教育

</a>


<a href="http://www.polyv.net" target="_blank">

  保利威视云视频

</a>


<a href="http://www.mobiletrain.org" target="_blank">

  iOS培训

</a>


<a href="http://www.rupeng.com" target="_blank">

  如鹏网

</a>


<a href="http://blog.java1234.com/" target="_blank">

  Java开源博客系统

</a>


<a href="http://www.dajiangtai.com/" target="_blank">

  大数据培训

</a>


<a href="http://jar.open1111.com/" target="_blank">

  Jar包下载网

</a>


<a href="http://www.ysfybj.com/" target="_blank">

  迷失传奇

</a>


<a href="http://java.ixueyun.com/" target="_blank">

  成都java学习

</a>


<a href="http://blog.open1111.com/" target="_blank">

  博客采集

</a>


<a href="http://www.ibeifeng.com/" target="_blank">

  北风网

</a>


<a href="http://www.xwcms.net" target="_blank">

  xw素材网

</a>


<a href="http://www.bjpowernode.com" target="_blank">

  java培训

</a>


<a href="http://www.itcast.cn" target="_blank">

  传智播客

</a>


<a href="http://www.itheima.com" target="_blank">

  黑马程序员

</a>


<a href="http://www.500d.me" target="_blank">

  简历模板

</a>


<a href="http://soft.job1001.com/" target="_blank">

  软件工程师招聘

</a>


<a href="http://www.yztcedu.com/" target="_blank">

  java培训

</a>


<a href="http://www.kgc.cn/" target="_blank">

  IT培训

</a>


<a href="http://money.163.com/15/1202/15/B9RF83H200253B0H.html" target="_blank">

  威尼斯人

</a>


<a href="http://www.lzdd.com/" target="_blank">

  以太网测试仪

</a>


<a href="http://www.junhuijc.cn/" target="_blank">

  硅藻泥加盟

</a>


<a href="http://www.nfitjy.com/" target="_blank">

  软件开发培训

</a>


<a href="http://www.onjobedu.com/" target="_blank">

  在职研究生

</a>


<a href="http://www.jidc.cn/" target="_blank">

  韩国服务器租用

</a>


<a href="http://www.eidc.cn/" target="_blank">

  香港服务器租用

</a>


<a href="http://www.zjjjs.gov.cn/" target="_blank">

  华中网

</a>


<a href="http://www.qqwmba.net/" target="_blank">

  伤感网名

</a>


<a href="http://www.goodprogrammer.org/" target="_blank">

  安卓培训

</a>


<a href="http://www.lk-idc.com/" target="_blank">

  香港高防服务器

</a>


<a href="http://www.hzc.com/" target="_blank">

  会展设计

</a>


<a href="http://www.mt4xt.com" target="_blank">

  微盘交易平台

</a>


<a href="http://www.mt4rental.com" target="_blank">

  MT4平台系统出租

</a>


<a target="_blank" href="http://wpa.qq.com/msgrd?v=3&amp;uin=1002222344&amp;site=qq&amp;menu=yes">

  <img border="0" src="http://wpa.qq.com/pa?p=2:1002222344:51" alt="联系站长" title="联系站长" data-bd-imgshare-binded="1"/>

</a>


<a href="http://www.miibeian.gov.cn/" target="_blank">

  苏ICP备13020813

</a>


<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=32061202001004">

  <img src="http://www.java1234.com/gg/gaba.png" data-bd-imgshare-binded="1"/>

  苏公网安备 32061202001004号

</a>


<a href="#" onclick="return false;" class="bdshare-slide-button">

</a>


<a href="#" onclick="return false;" class="slide-more" data-cmd="more">

  更多...

</a>


<a href="http://www.baidu.com/s?wd=&amp;tn=SE_hldp08010_vurs2xrp" class="bdselect_share_dialog_search" target="_blank">

  <i class="bdselect_share_dialog_search_i">

  </i>

  <span class="bdselect_share_dialog_search_span">

    百度一下

  </span>

</a>


<a class="bdselect_share_dialog_close">

</a>


<a href="#" class="bds_more" data-cmd="more">

</a>


<a href="#" onclick="return false;" class="bds_qzone" data-cmd="qzone" hidefocus="">

</a>


<a href="#" onclick="return false;" class="bds_tsina" data-cmd="tsina" hidefocus="">

</a>


<a href="#" onclick="return false;" class="bds_tqq" data-cmd="tqq" hidefocus="">

</a>


<a href="#" onclick="return false;" class="bds_renren" data-cmd="renren" hidefocus="">

</a>


<a href="#" onclick="return false;" class="bds_weixin" data-cmd="weixin" hidefocus="">

</a>


<a href="#" onclick="return false;" class="bds_more" data-cmd="more" hidefocus="">

</a>


======================

<li style="margin-right: 0px;margin-left: -3px;padding-left: 5px;">

  <a href="/">

    <span>

      主页

    </span>

  </a>

</li>


关键字:   htmlunit  
关注Java1234微信公众号
博主信息
Java1234_小锋
(知识改变命运,技术改变世界)
Powered by Java1234 V3.0 Copyright © 2012-2016 Java知识分享网 版权所有