• Tornado HTTP Server 開源項目

    Tornado HTTP Server是一個輕量級、安全、高效、多線程web服務器。完全支持HTTP1.1規范,GZip壓縮輸出。

    碼頭工人 2019-01-17   934   0

    HttpBot: 自動HTTP請求 經驗

    該項目是采用Java實現的自動HTTP請求,它能夠記錄所有瀏覽器活動,并寫入到一個XML格式的文件中,然后通過使用簡單的方法重新請求這些活動記錄。這對于自動化http服務器請求非常好用,比如:查詢搜索引擎或外部數據庫。

    jopen 2012-10-12   17103   0

    HTTP/2 資料匯總 經驗

    隨著今年 5 月 14 日 HTTP/2 協議正式版的發布,越來越多的網站開始部署 HTTP/2 了。我對 HTTP 協議一直都比較有興趣,本文匯總一些關于 HTTP/2 的資料以及我寫過的文章,會持

    jopen 2015-09-13   18156   0
    P

    HTTP Developer's Handbook 文檔

    The largest group with an unsatisfied demand for a good book on HTTP is the worldwide group of Web developers. A good book on HTTP can help new and old Web developers alike, as a thorough understanding of underlying protocols can remove the dependencies on specific tool sets and help people create and maintain better Web applications as well as adapt to technologies. HTTP has become an essential topic because the Web's importance has created an army of people creatively leveraging the Web for their specific needs. By making standards information more available to the common developer, standards compliance becomes more widespread and common, something that the industry needs. Developers will buy this book because they want to advance their expertise, and because there is very little documentation available. This book will easily become the standard reference for the Internet's most dominant protocol.

    zxsong 2013-08-09   3185   0

    HTTP Caching 優化網站 經驗

    HTTP Caching 用好了,可以極大的減小服務器負載和減少網絡帶寬。十分有必要深入了解下 http 的 caching 協議。 先來看下請求/響應過程: http 請求/響應 1、用

    fmms 2011-12-11   17254   0

    Spring HTTP Invoker 經驗

    Spring 開發小組意識到在RMI服務和基于 HTTP的服務(如Hessian和Burlap)之間的空白。一方面,RMI使用Java標準的對象序列化,但很難穿越防火墻;另一方面, Hessian/B

    webphp 2012-01-08   26135   0

    HTTP 代理服務:gopee 經驗

    opee 是一個 go 語言編寫的 HTTP 的代理服務。相當于提供一個被屏蔽網站的簡單訪問方法。 你可以將它部署到一些 paas 平臺上,下面是一個演示地址: https://gopee.herokuapp

    jopen 2015-01-03   15932   0
    gopee  

    HTTP 資源的同步 經驗

    原文 http://jaseywang.me/2015/03/07/http-資源的同步/ breed 為 yum, deb, rsync 的都很好做,直接通過 cobbler 內置的 repo

    jopen 2015-03-09   9543   0
    HTTP  
    P4

      HTTP 下載原理 文檔

    ?HTTP下載原理 對于HTTP協議,向服務器請求某個文件時,只要發送類似如下的請求即可: GET /Path/FileName HTTP/1.0 Host: www.caiban.net:80 Accept:

    jilijelon 2014-06-30   622   0
    HTTP  

    PHP調用http接口 代碼段

    //http請求接口 function curl_http_request($param,$url) { $ch = curl_init(); $curl_url = $url."?".$param;

    ncx6 2015-01-29   6850   0
    PHP  
    P3

      http頭字段總結 文檔

    什么時候過期,對于過期了的對象,只有在跟WEB服務器驗證了其有效性后,才能用來響應客戶請求。是 HTTP/1.0 的頭部。例如:Expires:Sat, 23 May 2009 10:02:12 GMT

    waachong 2012-08-15   1832   0
    P39

      HTTP協議 文檔

    1. 1HTTP協議一舟 yizhou@taobao.com 2009-11-19 2. 瀏覽器 3. 瀏覽器 4. 關于HTTP的問題HTTP是什么? 工作原理是什么? HTTP和HTTPS的區別?

    lishushan 2011-09-02   2353   0
    方案   HTTP   Go  

    http4j 開源項目

    http4j是一個開源的Java HTTP客戶端,主要是源自對工作中的一個項目設計的不滿和擴展Apache HttpComponent比較麻煩。 不同于Apache HttpComponent (HttpClient)之處在于:

    碼頭工人 2019-01-17   1062   0

    groovy-http 開源項目

    groovy-http這個開源項目讓你可以在groovy語言中使用Apache HTTP Client抓取網頁,然后利用 Jericho HTML Parser 抽取抓回來的內容。 收錄時間:2010-11-25

    碼頭工人 2019-01-17   497   0

    json封裝與解析的Java工具 代碼段

    import java.io.IOException; import com.alibaba.fastjson.JSON; import com.fasterxml.jackson.core.JsonParser;

    n24d 2015-01-04   14852   1
    JSON  

    java編寫的FTP上傳簡單工具 代碼段

    import java.io.DataInputStream; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream;

    jopen 2015-10-06   1706   0
    Java  

    Properties屬性文件操作Java工具 代碼段

    public class PropsUtil { private static final Logger logger = LoggerFactory.getLogger(PropsUtil.class); private Properties props = null; public PropsUtil(String propsPath) { this(propsPath, Const.DEFA

    peke 2016-01-06   2523   0
    Java  

    Java開發的文件比較工具:MergeHero 經驗

    MergeHero是Dynamsoft用Java開發的一個簡單的文件比較工具。它是版本控制軟件SourceAnywhere的其中一個組件。 主要功能 文件夾比較 純文本比較 文件合并 博客地址 http://www

    jopen 2014-04-23   44114   0

    Java版的DES加密工具 經驗

    一個Java版的DES加密工具類,可以用來進行網絡數據傳輸加密,保存密碼的時候進行加密。 import java.security.Key; import java.security.spec.Alg

    jopen 2014-06-07   138886   0

    java中常用的工具類(一) 經驗

    我們java程序員在開發項目的是常常會用到一些工具類。今天我匯總了一下java中常用的工具方法。大家可以在項目中使用。可以收藏! 一、String工具類 package com.itjh.javaUtil;

    jopen 2014-06-24   70178   0
    1 2 3 4 5 6 7 8 9 10
  • sesese色