亚洲免费在线-亚洲免费在线播放-亚洲免费在线观看-亚洲免费在线观看视频-亚洲免费在线看-亚洲免费在线视频

搜索到與相關的文章
Python

python搭建微信公眾平臺

python基于新浪sae開發的微信公眾平臺,實現功能:輸入段子---回復笑話輸入開源+文章---發送消息到開源中國輸入快遞+訂單號---查詢快遞信息輸入天氣---查詢南京最近五天天氣狀況輸入微博熱點---回復微博當前熱門話題輸入電影+名稱---回復百度云盤中搜索的鏈接具體實現代碼:#-*-coding:utf-8-*-importhashlibimportwebimportlxmlimporttimeimportosimporturllib2,jsoni

系統 2019-09-27 17:38:18 1797

Python

Python之os操作方法(詳解)

1.os.path.driname(path):返回路徑的上一級路徑字符串。>>>os.path.dirname('D:\Games')'D:\\'>>>2.os.path.basename(path):返回路徑的最后一級目錄名(文件夾名)或文件名(全稱)。>>>os.path.basename('D:\Games\9yin_632\蝸牛整包\\0x0804.ini')'0x0804.ini'>>>3.os.path.splitext(file_name)

系統 2019-09-27 17:38:14 1797

Python

深入理解Python 代碼優化詳解

選擇了腳本語言就要忍受其速度,這句話在某種程度上說明了python作為腳本的一個不足之處,那就是執行效率和性能不夠理想,特別是在performance較差的機器上,因此有必要進行一定的代碼優化來提高程序的執行效率。如何進行Python性能優化,是本文探討的主要問題。本文會涉及常見的代碼優化方法,性能優化工具的使用以及如何診斷代碼的性能瓶頸等內容,希望可以給Python開發人員一定的參考。代碼優化能夠讓程序運行更快,它是在不改變程序運行結果的情況下使得程序的

系統 2019-09-27 17:38:10 1797

Python

Python實現簡單多線程任務隊列

最近我在用梯度下降算法繪制神經網絡的數據時,遇到了一些算法性能的問題。梯度下降算法的代碼如下(偽代碼):defgradient_descent():#thegradientdescentcodeplotly.write(X,Y)一般來說,當網絡請求plot.ly繪圖時會阻塞等待返回,于是也會影響到其他的梯度下降函數的執行速度。一種解決辦法是每調用一次plotly.write函數就開啟一個新的線程,但是這種方法感覺不是很好。我不想用一個像cerely(一種分

系統 2019-09-27 17:37:56 1797

Python

詳解在Python的Django框架中創建模板庫的方法

不管是寫自定義標簽還是過濾器,第一件要做的事是創建模板庫(Django能夠導入的基本結構)。創建一個模板庫分兩步走:第一,決定模板庫應該放在哪個Django應用下。如果你通過manage.pystartapp創建了一個應用,你可以把它放在那里,或者你可以為模板庫單獨創建一個應用。我們更推薦使用后者,因為你的filter可能在后來的工程中有用。無論你采用何種方式,請確保把你的應用添加到INSTALLED_APPS中。我們稍后會解釋這一點。第二,在適當的Dja

系統 2019-09-27 17:37:42 1797

編程技術

XPDL與WS-BPEL的比較之四:工作流模式

二者對工作流模式的支持都比較全面(主要是指常說的Control-flow部分)。具體可參照列表:http://www.workflowpatterns.com/evaluations/standard/index.php今天看到的幾點,以后可以再補充:BPEL的一個優勢:通過scope元素的isolated屬性支持InterleavedParallelRouting模式:http://www.workflowpatterns.com/patterns/co

系統 2019-08-29 23:46:31 1797

編程技術

密碼盜取的原理及防范

『安全技術』密碼盜取的原理及防范作者:羅伯特robert一、非法獲取Password的原理:Edit控件是Windows的一個標準控件,當把其Password屬性設為True時,就會將輸入的內容屏蔽為星號,從而達到保護的目的。雖然我們看來都是星號,但程序中的Edit控件實際仍是用戶輸入的密碼,應用程序可以獲取該控件中的密碼,其他應用程序也可以通過向其發送WM_GETTEXT或EM_GETLINE消息來獲取Edit控件中的內容。黑客程序正是利用Edit控件的

系統 2019-08-29 23:39:13 1797

編程技術

photoshop結合Flash制作瓢蟲動畫(二)

這個圖像將成為蟲蟲身上的貼圖。有人會說了,三維動畫才用貼圖啊。嘿嘿,今天大家和我一齊,為平面圖加貼圖吧。打開這張圖像,將其拉入我們的瓢蟲圖中,設置如圖示,改名為“映射”。使用“濾鏡”-“扭曲”-“極坐標”-“平面坐標到極坐標”,我們把這張平淡的圖像做成圍繞型。之所以使用這個扭曲,是因為我們將把它放在蟲蟲背殼上。得讓它看上去有凸起的感覺,我們如果用球面化濾鏡的話,可能得到的結果并不理想。用極坐標,雖然它的扭曲結果并不是真正的凸起,但是得到的效果卻是最好的,所

系統 2019-08-29 23:35:08 1797

編程技術

tolua++初探(一)

用luaplus試驗了下,想把簡單的C++類映射到lua腳本中不難,但是復雜一點的,比方說類的聚合、繼承等,比較麻煩。我試驗了兩天,用表中表來實現是可以的,但自己弄太麻煩了。說到底,我只是想用一下而已,不是想從頭弄一個系統。用CEGUI時發現它用了tolua++,從網上DOWN了源碼(1.0.92),支持Lua5.1。我用VS2005,用源碼包里的sln順利編譯出tolua++.exe。lib據說要用第三方的scons來弄,嫌麻煩,我直接建了個VC動態庫工

系統 2019-08-29 23:30:54 1797

編程技術

完整的簡單層拖動代碼

howtomakeadragdivision-<a>http://www.never-online.net<</span> <p class="auth-span"> <span id="tjgufvlx2j" class="muted"><i class="fa fa-user"></i><span id="tjgufvlx2j" class="zj-icon-text">系統</span></span> <span id="tjgufvlx2j" class="muted"><i class="fa fa-clock-o"></i><span id="tjgufvlx2j" class="zj-icon-text">2019-08-29 23:27:10</span></span> <span id="tjgufvlx2j" class="muted"><i class="fa fa-eye"></i><span id="tjgufvlx2j" class="zj-icon-text">1797</span></span> <!-- <span id="tjgufvlx2j" class="muted"><i class="fa fa-comments-o"></i> <a target="_blank" >0評論</a></span> <span id="tjgufvlx2j" class="muted"> <a href="javascript:;" class="action zj-addlike"><i class="fa fa-heart-o"></i><span id="tjgufvlx2j" class="count">16</span>喜歡</a></span>--> </p> </article><div id="tjgufvlx2j" class="pagination" style="display:;"> <ul><li><a href="/search/spark/1/p/1">首頁</a></li> <li id="tjgufvlx2j" class="prev-page"><a href="/search/spark/1/p/2707">上一頁</a></li> <li><a href="/search/spark/1/p/2706">2706</a></li><li><a href="/search/spark/1/p/2707">2707</a></li><li id="tjgufvlx2j" class="active"><span>2708</span></li><li><a href="/search/spark/1/p/2709">2709</a></li><li><a href="/search/spark/1/p/2710">2710</a></li> <li id="tjgufvlx2j" class="next-page"><a href="/search/spark/1/p/2709">下一頁</a></li> <li><a href="/search/spark/1/p/2923">末頁</a></li> <li><span>共 2923頁,共29230條</span></li> </ul> </div> </div> </div> <!-- 右邊欄 --> <!-- 通用右部區域開始 --> <style type="text/css"> .d_postlist .text { /* height: 30px; */ display: block; /* height: 100%; */ font-size:14px !important; width:85%; } .zj-dynamic-info li{ margin: 10px 3px; } .zj-dynamic-info .zj-a{ color: blue; cursor: pointer; } </style> <aside class="sidebar"> <div id="tjgufvlx2j" class="widget d_postlist"> <div id="tjgufvlx2j" class="title"> <h2>站內搜索</h2> </div> <ul> <li><div id="tjgufvlx2j" class="zj-search-box zj-pc-search-box"> <form class="searchform themeform" role="form" action="/search" method="get"> <input style="font-size: 120%; margin-top: 10px;" type="ext" class="search" name="search_word" placeholder="搜索從這里開始..." value=""> <i class="fa fa-search"></i> <button class="btn btn-primary" type="button" style="margin-left: -4px;height: 36px !important;"> <span id="tjgufvlx2j" class="zj-icon-text">搜索</span> </button> </form> </div></li> </ul> </div> <!-- 廣告從位 --> <!-- <div id="tjgufvlx2j" class="widget widget_text"> <div id="tjgufvlx2j" class="textwidget"> <a target="_blank" ><img style="width: 100%" src="http://upload-dianshi-1255598498.file.myqcloud.com/345-7c71532bd4935fbdd9a67c1a71e577b1767b805c.200%E7%89%88%E6%9C%ACB.jpg"> </a> </div> </div> --> <!-- <div id="tjgufvlx2j" class="widget d_postlist"> <div id="tjgufvlx2j" class="title"> <h2>動態信息</h2> </div> <ul class="zj-dynamic-info"> <li>張軍充值了1元積分張軍充值了1元積分張軍充值了1元積分張軍充值了1元積分222</li> <li>張軍充值了<span id="tjgufvlx2j" class="zj-a" zj-href="#" style="" title="zzzzzzzzzzzzzzz">VIP</span>會員</li> <li>張軍下載了<span id="tjgufvlx2j" class="zj-a" zj-href="#" style="" title="zzzzzzzzzzzzzzz">文章-xxx</span>資料</li> <li>工工</li> <li>工工</li> <li>工工</li> <li>工工</li> <li>工工</li> <li>工工</li> </ul> </div> --> <div id="tjgufvlx2j" class="widget d_postlist"> <div id="tjgufvlx2j" class="title"> <h2>加入交流</h2> </div> <ul> <li id="tjgufvlx2j" class="zj-no-wx-app"><a target="_blank" ><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/qq-qun.png" alt=""></span><span id="tjgufvlx2j" class="text">1. 手機QQ掃左側二維碼</span><span id="tjgufvlx2j" class="text">2. 搜Q群:542395358</span> <span id="tjgufvlx2j" class="text">3. 點擊<img style="cursor: pointer;" onclick="window.open('//shang.qq.com/wpa/qunwpa?idkey=f6d1df60dbb7ebc94c2c8a67b1e094e1e90677df1e943d9547d425b81bb218a5');" border="0" src="http://pub.idqqimg.com/wpa/images/group.png" alt="張軍網站共享資料群" title="張軍網站共享資料群"> </span></a></li> <li id="tjgufvlx2j" class="zj-no-wx-app"><a target="_blank" ><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/qq-qun.png" alt=""></span><span id="tjgufvlx2j" class="text">1. 手機QQ掃左側二維碼</span><span id="tjgufvlx2j" class="text">2. 搜Q群:922215567</span> <span id="tjgufvlx2j" class="text">3. 點擊<img style="cursor: pointer;" onclick="window.open('//shang.qq.com/wpa/qunwpa?idkey=29dfc8d27e6e13276b9ea9848e3a211c076e130376a7b6ef380ffcc967e8a1fc');" border="0" src="http://pub.idqqimg.com/wpa/images/group.png" alt="java技術溝通群" title="java技術溝通群"> </span></a></li> <li><a target="_blank" href="javascript:void(0)" style="cursor: text;"><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/wx-gzh.jpg" alt="關注企業微信公眾號"></span><span id="tjgufvlx2j" class="text">1.手機微信掃左側二維碼 </span><span id="tjgufvlx2j" class="text">2. 微信中搜索:上海加盾信息科技有限公司</span></a></li> <li><a target="_blank" href="javascript:void(0)" style="cursor: text;"><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/wx-app-zhangjunbk.jpg" alt="關注軍軍小站|張軍博客小程序"></span><span id="tjgufvlx2j" class="text">1.手機微信掃左側二維碼 </span><span id="tjgufvlx2j" class="text">2. 微信搜索小程序:張軍博客 </span></a></li> <li><a target="_blank" href="javascript:void(0)" style="cursor: text;"><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/wx-app-shanghaijiadun.jpg" alt="關注企業微信小程序"></span><span id="tjgufvlx2j" class="text">1.手機微信掃左側二維碼 </span><span id="tjgufvlx2j" class="text">2. 微信搜索小程序:上海加盾信息科技有限公司</span></a></li> <li><a target="_blank" href="javascript:void(0)" style="cursor: text;"><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/dingding.jpg" alt="關注企業釘釘"></span><span id="tjgufvlx2j" class="text">關注企業釘釘 </span></a></li> <li><a target="_blank" href="javascript:void(0)" style="cursor: text;"><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/qywx-my.png" alt="關注企業微信"></span><span id="tjgufvlx2j" class="text">關注企業微信 </span></a></li> <li><a target="_blank" href="javascript:void(0)" style="cursor: text;"><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/wx.zhangjunbk.com.png" alt="微信掃一掃添加張軍網站微信群"></span><span id="tjgufvlx2j" class="text">微信掃一掃添加張軍網站微信群 </span></a></li> <li><a target="_blank" href="javascript:void(0)" style="cursor: text;"><span style="margin-right: 10px;" class="thumbnail"><img style="max-height: 100%;" src="/Public/static/images/my-wx.png" alt="添加我為微信好友"></span><span id="tjgufvlx2j" class="text">微信掃一掃加我為好友 </span></a></li> </ul> </div> <!-- <div id="tjgufvlx2j" class="widget d_postlist"> <div id="tjgufvlx2j" class="title"> <h2>猜你喜歡</h2> </div> <ul> <li><a class="zj-titles" href="/article/31314" title="RedisUtil工具類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/14.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">RedisUtil工具類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">在Redis中數據都是以key-value的形式存儲的,key規定只能是string類型的,所以我們</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31313" title="緩存技術相關"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Upload/image/ueditor/20231208/1702015708864605.png" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">緩存技術相關</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">redis-server.exe 服務器啟動命令 redis-cli.exe 命令行客戶端 re</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31312" title="定義一個時間類 Time,它能表示 24 小時制的時、分、秒,具體要求如下"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/8.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">定義一個時間類 Time,它能表示 24 小時制的時、分、秒,具體要求如下</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">(20 分) 定義一個時間類 Time,它能表示 24 小時制的時、分、秒,具體要求如下: (1)</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31309" title="java正則表達式 過濾特殊字符的正則表達式"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/4.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">java正則表達式 過濾特殊字符的正則表達式</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">java正則表達式 過濾特殊字符的正則表達式</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31308" title="安裝DB2"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Upload/image/ueditor/20220315/1647305518466205.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">安裝DB2</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">安裝DB2</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31307" title="Linux擴容分區"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/19.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">Linux擴容分區</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">Linux擴容分區</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31306" title="輸出相關路徑"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/11.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">輸出相關路徑</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">輸出相關路徑</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31305" title="輸出當前目錄下所有文件名到指定文件中"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/4.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">輸出當前目錄下所有文件名到指定文件中</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">輸出當前目錄下所有文件名到指定文件中</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31304" title="刪除命令參數說明"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/18.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">刪除命令參數說明</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">刪除命令參數說明</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31303" title="刪除前3天、前30天、前7天的文件"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/12.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">刪除前3天、前30天、前7天的文件</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">刪除前3天、前30天、前7天的文件</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31302" title="多線程工作處理"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/14.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">多線程工作處理</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">多線程工作處理、多線程工作處理簡單實現類、多線程工作處理接口</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31301" title="壓縮jsp,html中的代碼,去掉所有空白符、換行符"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/10.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">壓縮jsp,html中的代碼,去掉所有空白符、換行符</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">壓縮jsp,html中的代碼,去掉所有空白符、換行符</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31300" title="壓縮、解壓縮工具類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/16.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">壓縮、解壓縮工具類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">壓縮、解壓縮工具類</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31299" title="二維碼工具類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/4.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">二維碼工具類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">二維碼工具類、支付二維碼</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31298" title="緩存工具類 緩存名創建后即使移除緩存,也不會重新創建"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/19.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">緩存工具類 緩存名創建后即使移除緩存,也不會重新創建</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">緩存工具類 緩存名創建后即使移除緩存,也不會重新創建</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31297" title="json工具類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/2.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">json工具類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">json工具類</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31296" title="常量資源文件工具類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/5.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">常量資源文件工具類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">常量資源文件工具類</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31295" title="資源文件工具類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/6.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">資源文件工具類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">資源文件工具類</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31294" title="處理查詢結果后分頁排序類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/18.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">處理查詢結果后分頁排序類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">處理查詢結果后分頁排序類</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li><li><a class="zj-titles" href="/article/31293" title="html解析工具類、html表格解析解析工具類"> <span id="tjgufvlx2j" class="thumbnail"> <img style="max-height:86px;" src="/Public/static/images/article/7.jpg" alt="" title=""> </span> <span id="tjgufvlx2j" class="text" style="display: block;font-size: 110%;margin-bottom: 5px;">html解析工具類、html表格解析解析工具類</span> <span id="tjgufvlx2j" class="muted" style="display: block;font-size: 90%;">html解析工具類、爬蟲、html表格解析解析工具類、webClient工廠</span> <span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span> </a></li> </ul> </div> --> <div id="tjgufvlx2j" class="widget d_tag"> <div id="tjgufvlx2j" class="title"> <h2>標簽云</h2> </div> <div id="tjgufvlx2j" class="d_tags"> <a title="金融業務" href="/tag/37" onclick="return recordId('tid',37)">金融業務 (4)</a><a title="教育資料" href="/tag/39" onclick="return recordId('tid',39)">教育資料 (10)</a><a title="Java" href="/tag/41" onclick="return recordId('tid',41)">Java (901)</a><a title="C++" href="/tag/42" onclick="return recordId('tid',42)">C++ (86)</a><a title="C#" href="/tag/43" onclick="return recordId('tid',43)">C# (215)</a><a title="Python" href="/tag/44" onclick="return recordId('tid',44)">Python (9022)</a><a title="Oracle" href="/tag/45" onclick="return recordId('tid',45)">Oracle (911)</a><a title="SqlServer" href="/tag/46" onclick="return recordId('tid',46)">SqlServer (681)</a><a title="MySql" href="/tag/47" onclick="return recordId('tid',47)">MySql (600)</a><a title="DB2" href="/tag/48" onclick="return recordId('tid',48)">DB2 (33)</a><a title="PostgreSql" href="/tag/49" onclick="return recordId('tid',49)">PostgreSql (23)</a><a title="Tomcat" href="/tag/50" onclick="return recordId('tid',50)">Tomcat (825)</a><a title="Weblogic" href="/tag/51" onclick="return recordId('tid',51)">Weblogic (12)</a><a title="Windows" href="/tag/52" onclick="return recordId('tid',52)">Windows (214)</a><a title="Linux" href="/tag/53" onclick="return recordId('tid',53)">Linux (647)</a><a title="VMware" href="/tag/54" onclick="return recordId('tid',54)">VMware (32)</a><a title="Ubuntu" href="/tag/55" onclick="return recordId('tid',55)">Ubuntu (194)</a><a title="ASP.NET" href="/tag/56" onclick="return recordId('tid',56)">ASP.NET (198)</a><a title="Android" href="/tag/57" onclick="return recordId('tid',57)">Android (681)</a><a title="IOS" href="/tag/58" onclick="return recordId('tid',58)">IOS (75)</a><a title="Hive" href="/tag/59" onclick="return recordId('tid',59)">Hive (45)</a><a title="Hadoop" href="/tag/60" onclick="return recordId('tid',60)">Hadoop (50)</a><a title="Hbase" href="/tag/61" onclick="return recordId('tid',61)">Hbase (9)</a><a title="Spark" href="/tag/62" onclick="return recordId('tid',62)">Spark (4)</a><a title="redis" href="/tag/63" onclick="return recordId('tid',63)">redis (78)</a><a title="PHP" href="/tag/64" onclick="return recordId('tid',64)">PHP (145)</a><a title="Jquery" href="/tag/65" onclick="return recordId('tid',65)">Jquery (174)</a><a title="Javascript" href="/tag/66" onclick="return recordId('tid',66)">Javascript (168)</a><a title="NoSQL" href="/tag/67" onclick="return recordId('tid',67)">NoSQL (6)</a><a title="CSS" href="/tag/68" onclick="return recordId('tid',68)">CSS (127)</a><a title="資料下載" href="/tag/69" onclick="return recordId('tid',69)">資料下載 (25)</a><a title="交易系統" href="/tag/70" onclick="return recordId('tid',70)">交易系統 (9)</a><a title="java工具類" href="/tag/71" onclick="return recordId('tid',71)">java工具類 (32)</a><a title="其它" href="/tag/72" onclick="return recordId('tid',72)">其它 (7)</a><a title="秕處理" href="/tag/73" onclick="return recordId('tid',73)">秕處理 (4)</a> </div> </div> <!-- <div id="tjgufvlx2j" class="widget d_postlist"> <div id="tjgufvlx2j" class="title"> <h2>最新評論</h2> </div> <ul> <li><a href="" title="[Python3網絡爬蟲開發實戰] 1.8-爬蟲框架的安裝"><span id="tjgufvlx2j" class="thumbnail"><img src="" alt="[Python3網絡爬蟲開發實戰] 1.8-爬蟲框架的安裝"></span><span id="tjgufvlx2j" class="text">[Python3網絡爬蟲開發實戰] 1.8-爬蟲框架的安裝</span><span class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">551評論</span></a></li> <li><a href="" title="[Python3網絡爬蟲開發實戰] 1.8.4-Scrapy-Redis的安裝"><span id="tjgufvlx2j" class="thumbnail"><img style="width: 50px;height: 50px;" src="" alt="[Python3網絡爬蟲開發實戰] 1.8.4-Scrapy-Redis的安裝"></span><span id="tjgufvlx2j" class="text">[Python3網絡爬蟲開發實戰] 1.8.4-Scrapy-Redis的安裝</span><span id="tjgufvlx2j" class="muted">2018-01-25</span><span id="tjgufvlx2j" class="muted">370評論</span></a></li> </ul> </div> --> <div id="tjgufvlx2j" class="zj-no-wx-app widget widget_links"> <div id="tjgufvlx2j" class="title"> <h2 style="float: left;">友情鏈接</h2><h2 style="float: right;"><a class="zj-titles" href="/link">申請友鏈</a></h2> </div> <ul class="xoxo blogroll"> <li><a class="zj-titles" title="上海加盾信息科技有限公司" target="_blank">上海加盾信息科技有限公司</a></li><li><a class="zj-titles" title="股票002162悅心健康資金分析" href="/stock/my" target="_blank">股票002162悅心健康資金分析</a></li><li><a class="zj-titles" title="張軍博客" href="http://www.eyofj.com/" target="_blank">張軍博客</a></li><li><a class="zj-titles" title="張軍博客-網址導航" href="http://www.eyofj.com/web-nav/index.htm" target="_blank">張軍博客-網址導航</a></li><li><a class="zj-titles" title="張軍java工具類" href="http://www.eyofj.com/otherlink/javatooldoc/" target="_blank">張軍java工具類</a></li><li><a class="zj-titles" title="iBAAO壹寶頭條" target="_blank">iBAAO壹寶頭條</a></li><li><a class="zj-titles" title="快手號出售" target="_blank">快手號出售</a></li><li><a class="zj-titles" title="張軍博客-SpringBoot入門" target="_blank">張軍博客-SpringBoot入門</a></li> </ul> </div> <!-- <div id="tjgufvlx2j" class="zj-no-wx-app widget widget_links"> <div id="tjgufvlx2j" class="title"> <h2 style="float: left;">demo案例</h2><h2 style="float: right;"><a class="zj-titles" href="/link">申請友鏈</a></h2> </div> <ul class="xoxo blogroll"> <li><a class="zj-titles" title="XXX環保設備有限公司" href="/demo/green-env" target="_blank">XXX環保設備有限公司</a></li> <li><a class="zj-titles" title="市突發預警平臺實時監控" href="/demo/monitor-1" target="_blank">市突發預警平臺實時監控</a></li> </ul> </div> --> <div id="tjgufvlx2j" class="zj-no-wx-app widget widget_links"> <div id="tjgufvlx2j" class="title"> <h2 style="float: left;">51鏈網站</h2> </div> <ul class="xoxo blogroll"> <li><a class="zj-titles" title="51鏈首頁" target="_blank">51鏈首頁</a></li> <li><a class="zj-titles" title="51鏈注冊頁" target="_blank">51鏈注冊頁</a></li> <li><a class="zj-titles" title="廣告出售頁" target="_blank">廣告出售頁</a></li> <li><a class="zj-titles" title="友鏈出租頁" target="_blank">友鏈出租頁</a></li> <li><a class="zj-titles" title="軟文出售頁" target="_blank">軟文出售頁</a></li> <li><a class="zj-titles" title="友鏈交換頁" target="_blank">友鏈交換頁</a></li> </ul> </div> <!-- <div id="tjgufvlx2j" class="widget widget_text"> <div id="tjgufvlx2j" class="textwidget"> <a href="javascript:void(0);" style="display: none"><img src="/Public/static/advertisement/1/3.png"></a> </div> </div> --> <!-- 廣告從位 --> <!-- <div id="tjgufvlx2j" class="widget widget_text"> <div id="tjgufvlx2j" class="textwidget"> <a target="_blank" ><img style="width: 100%" src="http://img.alicdn.com/tfs/TB1aDXhXpzqK1RjSZFvXXcB7VXa-259-194.jpg"> </a> </div> </div> --> <!-- 廣告從位 --> <!-- <div id="tjgufvlx2j" class="widget widget_text"> <div id="tjgufvlx2j" class="textwidget"> <a target="_blank" ><img style="width: 100%" src="http://upload-dianshi-1255598498.file.myqcloud.com/%E7%83%AD%E9%97%A8%E7%A7%92%E6%9D%801%E6%A0%B81G-345x200-ecb263a2fff4774dcdaac834589cda06ec6825ca.jpg"> </a> </div> </div> --> <!-- 廣告從位 --> <!-- <div id="tjgufvlx2j" class="widget widget_text"> <div id="tjgufvlx2j" class="textwidget"> <a target="_blank" ><img style="width: 100%" src="http://img.alicdn.com/tfs/TB1wFYxbRv0gK0jSZKbXXbK2FXa-440-255.jpg"> </a> </div> </div> --> <!-- 廣告從位 --> <!-- <div id="tjgufvlx2j" class="widget widget_text"> <div id="tjgufvlx2j" class="title"> <h2 style="float: left;">自愿打賞</h2> </div> <div id="tjgufvlx2j" class="textwidget"> <a target="_blank" href="/Upload/image/ueditor/20190814/1565782795994997.png"><img style="width: 100%" src="/Upload/image/ueditor/20190814/1565782795994997.png"> </a> </div> </div> --> </aside> <!-- 通用右部區域結束 --> <script type="text/javascript"> $(function(){ }); </script> </section> <!-- 底部 --> <!-- 通用底部文件開始 --> <footer class="footer"> <div id="tjgufvlx2j" class="footer-inner"> <div id="tjgufvlx2j" class="copyright pull-left"> <a href="/">軍軍小站|張軍博客</a> 丨 <a target="_blank" >獲取加密軟件注冊碼</a>丨<a target="_blank" >上海加盾信息科技有限公司</a>丨<a href="/article/24">個人簡介</a> 丨 ? 2020-2030 版權所有丨<a target="_blank" >滬ICP備19026782號-2</a> | <a href="/link">申請友鏈</a> | 站長QQ:<a target="_blank" >360901061</a> </div> </div> </footer> <div id="tjgufvlx2j" class="rollto zj-rollto"> <button class="btn btn-inverse zj-totop" data-type="totop" title="回頂部" zj-title-options="direction:'left'"> <i class="fa fa-arrow-up"></i> </button> <button class="btn btn-inverse zj-torespond" data-type="torespond" title="發評論" zj-title-options="direction:'left'"> <i class="fa fa-comment-o"></i> </button> </div> <div id="tjgufvlx2j" class="zj-mark"></div> <div id="tjgufvlx2j" class="zj-search-box zj-mini-search-box" style="position: fixed; top: 0px; background: #FFF; height: 100%; width: 100%; text-align: center; display: none; background: ; z-index: 2000"> <span id="tjgufvlx2j" class="close zj-close" style="top: 3%; right: 8%; font-size: 220%; color: #000;"></span> <form class="searchform themeform" role="form" action="/search" method="get" style="margin: 20% auto;"> <input style="font-size: 120%; margin-top: 10px;" type="ext" class="search" name="search_word" placeholder="搜索從這里開始..." value=""> <button class="btn btn-primary" type="button" style="margin-left: -4px;height: 36px !important;"> <span id="tjgufvlx2j" class="zj-icon-text">搜索</span> </button> </form> </div> <!-- 張軍(QQ:360901061)自定義js引用 --> <script src="/Public/static/js/wxLogin.js?v=1.0.4"></script> <script src="/Public/static/js/jweixin-1.3.2.js?v=1.0.1"></script> <script src="/Template/default/Home/Public/js/zj.basic.js?v=1.0.4"></script> <script src="/Template/default/Home/Public/js/zj.jq.ui.js?v=1.0.4"></script> <script src="/Template/default/Home/Public/js/zj.jq.js?v=1.0.4"></script> <script src="/Template/default/Home/Public/js/zj.jq.web.js?v=1.0.5"></script> <script src="/Template/default/Home/Public/js/zj.validate.js?v=1.0.4"></script> <script src="/Template/default/Home/Public/js/qrcode.min.js?v=1.0.4"></script> <script src="/Public/static/ueditor1_4_3/third-party/SyntaxHighlighter/shCore.js?v=1.0.1"></script> <script src="/Public/static/js/stomp.js?v=1.0.1"></script> <script type="text/javascript"> $(document).ready(function(){ SyntaxHighlighter.all(); }); </script> <!-- pc端底部引用 --> <script src="/Template/default/Home/Public/js/zj.app.js?v=1.0.4"></script> <script src="/Template/default/Home/Public/js/zj.login.reg.js?v=1.0.4"></script> <script type="text/javascript"> $(function() { $(".zj-rollto").returnTop($(".zj-totop")); if ($('.v-comment').length == 0) { $('.zj-torespond').remove(); } else { $('.zj-torespond').click(function() { $('.v-comment').focus(); }); } }); </script> <!-- 添加分享按鈕 --> <!-- 通用底部文件結束 --> <!-- 目前手動添加 --> <script> (function(){ var src = "https://jspassport.ssl.qhimg.com/11.0.1.js?d182b3f28525f2db83acfaaf6e696dba"; document.write('<script src="' + src + '" id="sozz"><\/script>'); })(); </script> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.eyofj.com/" title="亚洲免费在线|亚洲免费在线播放|亚洲免费在线观看|亚洲免费在线观看视频|亚洲免费在线看|亚洲免费在线视频">亚洲免费在线|亚洲免费在线播放|亚洲免费在线观看|亚洲免费在线观看视频|亚洲免费在线看|亚洲免费在线视频</a> <div class="friend-links"> </div> </div> </footer> 主站蜘蛛池模板: <a href="http://www.dogfuns.com.cn" target="_blank">中文字幕视频在线免费观看 </a>| <a href="http://www.suhrlwm.cn" target="_blank">午夜国产精品影院在线观看 </a>| <a href="http://www.junhongkeji.cn" target="_blank">99r精品在线 </a>| <a href="http://www.bolanclub.cn" target="_blank">国产一区二区三区免费在线视频 </a>| <a href="http://www.h888316.cn" target="_blank">国产在线成人精品 </a>| <a href="http://www.szkangqin.cn" target="_blank">a级毛片高清免费视频 </a>| <a href="http://www.b7vu1.cn" target="_blank">精品中文字幕不卡在线视频 </a>| <a href="http://www.dhcfg.cn" target="_blank">福利视频欧美一区二区三区 </a>| <a href="http://www.nanshihufu.cn" target="_blank">婷婷激情五月网 </a>| <a href="http://www.hcang.cn" target="_blank">欧美一级毛片无遮 </a>| <a href="http://www.photoline.com.cn" target="_blank">99热国产 </a>| <a href="http://www.nyzhangheng.cn" target="_blank">国产婷婷综合在线视频中 </a>| <a href="http://www.mtnp.com.cn" target="_blank">日本aaaa </a>| <a href="http://www.hongrun.net.cn" target="_blank">国产成人丝袜网站在线观看 </a>| <a href="http://www.ms1988.cn" target="_blank">日韩中文字幕一区 </a>| <a href="http://www.chenghuaige.cn" target="_blank">2021久久精品国产99国产 </a>| <a href="http://www.81470.cn" target="_blank">欧美日韩亚洲精品国产色 </a>| <a href="http://www.qinyehai2501.com.cn" target="_blank">午夜影院一级片 </a>| <a href="http://www.chayibai.com" target="_blank">国产精品一区在线免费观看 </a>| <a href="http://www.54265.cn" target="_blank">中文字暮文字暮 </a>| <a href="http://www.tgdqx.cn" target="_blank">国产中文字幕视频在线观看 </a>| <a href="http://www.nxhf.com.cn" target="_blank">日韩精品一区二区三区国语自制 </a>| <a href="http://www.glove100.com.cn" target="_blank">亚洲精品第一区二区在线 </a>| <a href="http://www.nitedu.cn" target="_blank">福利视频91 </a>| <a href="http://www.khfyg.cn" target="_blank">亚洲精品久一区 </a>| <a href="http://www.woheta.cn" target="_blank">欧美国产一区二区二区 </a>| <a href="http://www.54265.cn" target="_blank">成年女人午夜毛片免费看 </a>| <a href="http://www.591phs.com" target="_blank">亚洲日本高清 </a>| <a href="http://www.0b3kk7.cn" target="_blank">播五月 </a>| <a href="http://www.vfgqlw.cn" target="_blank">爱爱视频天天看 </a>| <a href="http://www.35401.cn" target="_blank">国产成人亚洲精品无广告 </a>| <a href="http://www.songshiquan.cn" target="_blank">激情 婷婷 </a>| <a href="http://www.70361.cn" target="_blank">韩国精品欧美一区二区三区 </a>| <a href="http://www.37050.cn" target="_blank">国产精品久久久久久福利69堂 </a>| <a href="http://www.37050.cn" target="_blank">69国产成人综合久久精品91 </a>| <a href="http://www.mmawarehouse.cn" target="_blank">久久精品资源 </a>| <a href="http://www.yclpre.cn" target="_blank">天天操91</a>| <a href="http://www.szjssh.com.cn" target="_blank">国产二级片 </a>| <a href="http://www.nitedu.cn" target="_blank">久久香蕉国产线看精品 </a>| <a href="http://www.umb.net.cn" target="_blank">av大片 </a>| <a href="http://www.89r.com.cn" target="_blank">中文字幕人成不卡一区 </a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="aya0y" class="pl_css_ganrao" style="display: none;"><small id="aya0y"><tbody id="aya0y"><sup id="aya0y"></sup></tbody></small><fieldset id="aya0y"></fieldset><option id="aya0y"></option><acronym id="aya0y"></acronym><object id="aya0y"><table id="aya0y"><tr id="aya0y"></tr></table></object><input id="aya0y"><li id="aya0y"><acronym id="aya0y"></acronym></li></input><strong id="aya0y"><button id="aya0y"><pre id="aya0y"></pre></button></strong><kbd id="aya0y"></kbd><button id="aya0y"></button><pre id="aya0y"><blockquote id="aya0y"><wbr id="aya0y"></wbr></blockquote></pre><noscript id="aya0y"></noscript><center id="aya0y"></center><button id="aya0y"><pre id="aya0y"><s id="aya0y"></s></pre></button><rt id="aya0y"></rt><abbr id="aya0y"></abbr><delect id="aya0y"></delect><del id="aya0y"><dl id="aya0y"><noframes id="aya0y"></noframes></dl></del><ul id="aya0y"><pre id="aya0y"><strike id="aya0y"></strike></pre></ul><dd id="aya0y"></dd><table id="aya0y"></table><pre id="aya0y"></pre><delect id="aya0y"></delect><td id="aya0y"></td><em id="aya0y"></em><pre id="aya0y"></pre><cite id="aya0y"></cite><optgroup id="aya0y"></optgroup><tr id="aya0y"></tr><table id="aya0y"></table><noscript id="aya0y"></noscript><source id="aya0y"><bdo id="aya0y"><noscript id="aya0y"></noscript></bdo></source><td id="aya0y"></td><td id="aya0y"></td><blockquote id="aya0y"></blockquote><dl id="aya0y"></dl><bdo id="aya0y"><em id="aya0y"><pre id="aya0y"></pre></em></bdo><tbody id="aya0y"><button id="aya0y"><center id="aya0y"></center></button></tbody><acronym id="aya0y"></acronym><bdo id="aya0y"></bdo><menu id="aya0y"></menu><del id="aya0y"></del><tbody id="aya0y"></tbody><center id="aya0y"><td id="aya0y"><fieldset id="aya0y"></fieldset></td></center><dl id="aya0y"><nav id="aya0y"><ul id="aya0y"></ul></nav></dl><nav id="aya0y"></nav><ul id="aya0y"></ul><center id="aya0y"><small id="aya0y"><option id="aya0y"></option></small></center><small id="aya0y"></small><li id="aya0y"></li><fieldset id="aya0y"><optgroup id="aya0y"><kbd id="aya0y"></kbd></optgroup></fieldset><abbr id="aya0y"></abbr><code id="aya0y"></code><s id="aya0y"></s><noscript id="aya0y"></noscript><s id="aya0y"></s><acronym id="aya0y"><rt id="aya0y"><code id="aya0y"></code></rt></acronym><noscript id="aya0y"><pre id="aya0y"><dd id="aya0y"></dd></pre></noscript><acronym id="aya0y"></acronym><code id="aya0y"></code><tfoot id="aya0y"><object id="aya0y"><nav id="aya0y"></nav></object></tfoot><abbr id="aya0y"></abbr><th id="aya0y"></th><samp id="aya0y"></samp><pre id="aya0y"><ul id="aya0y"><th id="aya0y"></th></ul></pre><menu id="aya0y"></menu><tfoot id="aya0y"><object id="aya0y"><noscript id="aya0y"></noscript></object></tfoot><samp id="aya0y"></samp><dd id="aya0y"><tr id="aya0y"><menu id="aya0y"></menu></tr></dd><delect id="aya0y"><fieldset id="aya0y"><code id="aya0y"></code></fieldset></delect><center id="aya0y"></center><code id="aya0y"></code><center id="aya0y"></center><menu id="aya0y"></menu><option id="aya0y"><delect id="aya0y"><center id="aya0y"></center></delect></option><tr id="aya0y"></tr><cite id="aya0y"></cite><pre id="aya0y"></pre><noscript id="aya0y"><pre id="aya0y"><dd id="aya0y"></dd></pre></noscript><center id="aya0y"><dd id="aya0y"><bdo id="aya0y"></bdo></dd></center><s id="aya0y"></s><sup id="aya0y"></sup><input id="aya0y"></input><optgroup id="aya0y"><abbr id="aya0y"><tbody id="aya0y"></tbody></abbr></optgroup><tbody id="aya0y"></tbody><strong id="aya0y"></strong><strong id="aya0y"></strong><small id="aya0y"></small><pre id="aya0y"></pre><s id="aya0y"></s><menu id="aya0y"></menu><acronym id="aya0y"></acronym><pre id="aya0y"><blockquote id="aya0y"><wbr id="aya0y"></wbr></blockquote></pre><strike id="aya0y"></strike><input id="aya0y"></input><tfoot id="aya0y"><wbr id="aya0y"><noscript id="aya0y"></noscript></wbr></tfoot><optgroup id="aya0y"><noscript id="aya0y"><pre id="aya0y"></pre></noscript></optgroup><rt id="aya0y"><code id="aya0y"><pre id="aya0y"></pre></code></rt><tr id="aya0y"></tr><sup id="aya0y"></sup><strike id="aya0y"></strike><option id="aya0y"></option><blockquote id="aya0y"></blockquote><table id="aya0y"><tbody id="aya0y"><sup id="aya0y"></sup></tbody></table><th id="aya0y"><button id="aya0y"><nav id="aya0y"></nav></button></th><noscript id="aya0y"></noscript><blockquote id="aya0y"></blockquote><tfoot id="aya0y"></tfoot><wbr id="aya0y"></wbr><wbr id="aya0y"><input id="aya0y"><tbody id="aya0y"></tbody></input></wbr><pre id="aya0y"></pre><tr id="aya0y"></tr><center id="aya0y"></center><small id="aya0y"></small><abbr id="aya0y"></abbr><tbody id="aya0y"><button id="aya0y"><samp id="aya0y"></samp></button></tbody><dfn id="aya0y"></dfn><bdo id="aya0y"></bdo><abbr id="aya0y"><dfn id="aya0y"><dd id="aya0y"></dd></dfn></abbr><optgroup id="aya0y"><kbd id="aya0y"><tbody id="aya0y"></tbody></kbd></optgroup><menu id="aya0y"><pre id="aya0y"><dfn id="aya0y"></dfn></pre></menu><menu id="aya0y"></menu><option id="aya0y"></option><pre id="aya0y"><pre id="aya0y"><wbr id="aya0y"></wbr></pre></pre><abbr id="aya0y"></abbr><blockquote id="aya0y"></blockquote><tfoot id="aya0y"></tfoot><del id="aya0y"><tbody id="aya0y"><th id="aya0y"></th></tbody></del><button id="aya0y"></button><option id="aya0y"></option><bdo id="aya0y"></bdo><tr id="aya0y"></tr><kbd id="aya0y"><strike id="aya0y"><input id="aya0y"></input></strike></kbd><acronym id="aya0y"><rt id="aya0y"><input id="aya0y"></input></rt></acronym><li id="aya0y"></li><tbody id="aya0y"></tbody><center id="aya0y"></center><bdo id="aya0y"></bdo><tr id="aya0y"><rt id="aya0y"><code id="aya0y"></code></rt></tr><center id="aya0y"><source id="aya0y"><menu id="aya0y"></menu></source></center><dd id="aya0y"></dd><th id="aya0y"><td id="aya0y"><sup id="aya0y"></sup></td></th><input id="aya0y"><tbody id="aya0y"><button id="aya0y"></button></tbody></input><noscript id="aya0y"></noscript><s id="aya0y"></s><button id="aya0y"></button><strong id="aya0y"></strong><tbody id="aya0y"></tbody><samp id="aya0y"></samp><del id="aya0y"></del><cite id="aya0y"></cite></div> </html>