網頁中檔案的壓縮

來源:互聯網
上載者:User

標籤:

package servlt;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.zip.GZIPOutputStream;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class GizpServlt extends HttpServlet{
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
System.out.println("abc.......");
String str="nsdhfjvndknhguris湖gdfdffwqdsacdggtrhhjzx" +
"南城市學院湖南城市學院湖南城市學fffffffffffffzfff院gtsrgt" +
"湖南城市學院ytdewfdsffrsgs湖南城市學院湖南城市學院vnbvnhgnh" +
"湖南城市學院dsfdxgxxfhj湖南城市學院湖南城市學院brefdcdsadjh" +
"湖南城市學院歡迎來到渾南城市血雨啊第底部房地產商的哇發啊防風固沙提高調查" +
"三方廣泛的撒釜底抽薪出現swdszghyt幸福的在深圳工作的複活石頭人是不是認識" ;
byte src[]=str.getBytes("UTF-8");
System.out.println("壓縮前的長度:"+src.length);

ByteArrayOutputStream bout=new ByteArrayOutputStream();//記憶體流;
GZIPOutputStream gzipout=new GZIPOutputStream(bout);
gzipout.write(src);//把src數組寫入到壓縮bout中
gzipout.close();//刷緩衝;
byte dest[]=bout.toByteArray();//把來源資料壓縮成目標資料;
System.out.println("壓縮後的長度:"+dest.length);

/* 告訴瀏覽器,當前用resp寫出的內容不要緩衝
resp.setHeader("Expires", "-1");
resp.setHeader("Cache-control", "no-cache");
resp.setHeader("Pragma", "no-cache");
*/

resp.setContentType("text/html;charset=utf-8");
//輸出壓縮資料時,必須設定相應頭;
resp.setHeader("Content-Encoding", "gzip");//這個gzip是要跟web.xml裡面的 <url-pattern>裡面設定的名字一樣,才能串連到伺服器中;
OutputStream out=resp.getOutputStream();
out.write(dest);
}
}

網頁中檔案的壓縮

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.