HttpServletResponse使用案例(二)——頁面定時刷新(頁面讀秒操做)
響應的頭refresh
<meta http-equiv="refresh" content="5;url=/day10/response/login.html"> (客戶端meta中設置頭信息refresh)
response.setHeader("refresh", "5;url=/day6/hello.html"); (或者在服務器端爲客戶端設置實現)
HttpServletResponse使用案例(三)——禁用瀏覽器緩存(三個頭信息)
禁用緩存就是禁止瀏覽器緩存當前文檔內容,包含以下三個頭信息:
Cache-Control:no-cache
Expires:-1 值是日期類型(setDateHeader)
Pragma:no-cache
實例方法以下:
// 設置response 的三個頭信息
response.setHeader("Cache-Control", "no-cache");
response.setHeader("Pragma", "no-cache");
// Expires 要求格式 日期格式
// 經過setDateHeader設置一個毫秒信息,自動轉換日期格式
response.setDateHeader("Expires", -1);
HttpServletResponse使用案例(四)——向頁面輸出中文(字節流和字符流)
(1)字節流輸出中文 ServletOutputStream getOutputStream()
- 亂碼和瀏覽器的編碼有關
- 設置瀏覽器默認打開時候的編碼集
- 獲取字符串byte數組時,傳入一個編碼集
字節輸出中文是否必定亂碼呢?
不必定亂碼,但有時候會亂碼,跟瀏覽器的編碼有關
解決方法:
設置瀏覽器打開文件時所採用的的編碼
response.setHeader("Content-Type", "text/html;charset=UTF-8");
獲取字符串byte數組編碼和打開文件時編碼一致
"哈嘍個人".getBytes("UTF-8")
(2)字符流輸出中文 PrintWriter getWriter()
字符輸出中文必定亂碼,由於response的字符流緩衝區的編碼,默認值是ISO-8859-1,是不支持中文的。
解決方法:
- 設置response緩衝區編碼: response.setCharacterEncoding("UTF-8");
- 設置瀏覽器打開文件時所採用的的編碼:response.setHeader("Content-Type","text/html;charset=UTF-8");
- 簡寫方式:response.setContentType("text/html;charset=UTF-8");(等效於以上兩句代碼)
(3)response生成響應的注意事項
- getOutputStream和getWriter方法分別用於獲得輸出二進制數據、輸出文本數據的ServletOutputStream、PrintWriter對象。
- getOutputStream和getWriter這兩個方法相互排斥,調用了其中任何一個方法後,就不能再調用另外一方法。
- Servlet程序向ServletOutputStream或PrintWriter對象中寫入的數據將被Servlet引擎從response中獲取,Servlet引擎將這些數據當作響應消息的正文,而後再與響應狀態行和各響應頭組合後輸出到客戶端。
- Servlet的service方法結束後,Servlet引擎將檢查getWriter或getOutputStream方法返回的輸出流對象是否已經調用過close方法,若是沒有,Servlet引擎Tomcat將調用close方法關閉該輸出流對象。調用close的時候,應該會調用flushBuffer
HttpServletResponse使用案例(五)——文件下載(字節流和字符流)
(1)超連接下載
若是瀏覽器不能識別的格式,會彈出下載窗口。可是若是瀏覽器識別的話,會默認打開文件。
(2)後臺程序下載(彈出下載窗口)
- 設置頭信息response.setHeader("Content-Disposition","attatchment;filename="+文件名稱);
- 經過response.getOutputStream()向瀏覽器輸出
文件下載
- <span style="font-size:18px;">文件下載
- String realpath = this.getServletContext().getRealPath(
- "/download/11.jpg");
- String filename = realpath.substring(realpath.lastIndexOf("\\") + 1);
-
- response.setHeader("content-disposition", "attachment;filename="+filename);
-
- FileInputStream fis = new FileInputStream(realpath);
- int len = 0;
- byte[] buf = new byte[1024];
- OutputStream os = response.getOutputStream();
- while((len=fis.read(buf))!=-1){
- os.write(buf, 0, len);
- }
- fis.close();
-
- Test2:文件名中文
- String realpath = this.getServletContext().getRealPath(
- "/download/11.jpg");
- String filename = realpath.substring(realpath.lastIndexOf("\\") + 1);
-
- response.setHeader("content-disposition", "attachment;filename="+URLEncoder.encode(filename, "utf-8"));
-
- FileInputStream fis = new FileInputStream(realpath);
- int len = 0;
- byte[] buf = new byte[1024];
- OutputStream os = response.getOutputStream();
- while((len=fis.read(buf))!=-1){
- os.write(buf, 0, len);
- }
- fis.close();
-
- Test3:字符流下載
- String realpath = this.getServletContext().getRealPath(
- "/download/11.jpg");
- String filename = realpath.substring(realpath.lastIndexOf("\\") + 1);
-
- response.setHeader("content-disposition", "attachment;filename="+URLEncoder.encode(filename, "utf-8"));
-
- FileReader fis = new FileReader(realpath);
- int len = 0;
- char[] buf = new char[1024];
- PrintWriter os = response.getWriter();
- while((len=fis.read(buf))!=-1){
- os.write(buf, 0, len);
- }
- fis.close();
- </span>
注意:下載文件時中文名亂碼的問題:
- <span style="font-size:18px;">
- String agent = request.getHeader("User-Agent");
-
- byte[] bytes = agent.contains("MSIE") ? filename.getBytes() : filename
- .getBytes("UTF-8");
- filename = new String(bytes, "ISO-8859-1");
- </span>
HttpServletResponse使用案例(六)——圖片驗證碼
(1)輸出圖片驗證碼的大體步驟
在內存中生成圖片
能夠使用BufferedImage對象
該對象能夠獲取畫筆對象 getGraphics()
隨機生成字母或數字
能夠使用Random對象
把生成的數字或字母寫在圖片上 (經過畫筆中的方法)
把圖片生成到頁面上 (能夠使用ImageIO對象)
(2)輸出圖片驗證碼的具體細節:
1) 創建BufferedImage對象:指定圖片的長度寬度和類型
BufferedImage image = new BufferedImage(width,height,BufferedImage.TYPE_INT_RGB);
2) 取得Graphics畫筆對象,用來繪製圖片
Graphics graphics = image.getGraphics();
3) 繪製背景顏色
graphics.setColor(Color.WHITE);
graphics.fillRect(0,0,width,hight);
4) 繪製邊界
graphics.setColor(Color.BLUE);
graphics.drawRect(0,0,width,height);
5) 生成隨機數
Random random = new Random();
random.nextInt(n); // 生成0到n(不包括n)之間的隨機數 前閉後開
6) 繪製干擾線
graphics.drawLine(x1,y1,x2,y2);
7)設置字體
graphics.setFont(new Font("Times New Roman", Font.PLAIN, 18));
若是驗證碼是中文,要使用中文的字體庫
經過詞庫生成隨機驗證碼內容
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
漢字:\u4e00 —— \u9fa5
graphics.drawString(str, x, y);
8)設置旋轉
Graphics2D graphics = (Graphics2D) image.getGraphics();
graphics.rotate(theta, x, y);
9) 釋放此圖形的上下文以及它使用的全部系統資源
graphics.dispose();
10) 經過ImageIO對象的write靜態方法將圖片輸出
ImageIO.write(image, "jpg", resp.getOutputStream());
(3)使用旋轉的技巧
經過Graphics2D對象的 void rotate(double theta, double x, double y) 畫旋轉。
Theta表明弧度。
弧度的公式:弧度=角度 * PI / 180
// 加入字體旋轉 角度-30 --- 30之間
int jiaodu = random.nextInt(60) - 30;
// 轉換角度爲弧度
double theta = jiaodu * Math.PI / 180;
// 獲取img標籤對象 得到src的屬性 動態src屬性賦值
var img = document.getElementById("imgId");
img.src = "/day08/response7?"+new Date().getTime();
(4)代碼示例
- <span style="font-size:18px;">public void doGet(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
- // 禁止瀏覽器緩存 驗證碼圖片
- // response.setHeader("cache-control", "no-cache");
- // response.setHeader("pragma", "no-cache");
- // response.setDateHeader("expires", -1);
-
- // 生成圖片。使用Java圖形界面技術awt、swing 包
- // 1 建立內存中圖片
- int width = 120;
- int height = 30;
- BufferedImage bufferedImage = new BufferedImage(width, height,
- BufferedImage.TYPE_INT_RGB);
-
- // 2 繪製圖片背景色
- Graphics2D graphics2d = (Graphics2D) bufferedImage.getGraphics();
- // 指定顏色
- graphics2d.setColor(Color.GRAY);
- graphics2d.fillRect(0, 0, width, height);
-
- // 三、繪製邊框
- graphics2d.setColor(Color.yellow);
- graphics2d.drawRect(0, 0, width - 1, height - 1);
-
- // 四、向圖片中生成驗證碼內容
- graphics2d.setColor(Color.BLUE);
- graphics2d.setFont(new Font("新宋體", Font.BOLD, 18));
- // String word =
- // "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
- // 若是使用漢字,字體必需要支持漢字
- String word = "\u7684\u4e00\u4e86\u662f\u6211\u4e0d\u5728\u4eba\u4eec\u6709\u6765\u4ed6\u8fd9\u4e0a\u7740\u4e2a\u5730\u5230\u5927\u91cc\u8bf4\u5c31\u53bb\u5b50\u5f97\u4e5f\u548c\u90a3\u8981\u4e0b\u770b\u5929\u65f6\u8fc7\u51fa\u5c0f\u4e48\u8d77\u4f60\u90fd\u628a\u597d\u8fd8\u591a\u6ca1\u4e3a\u53c8\u53ef\u5bb6\u5b66\u53ea\u4ee5\u4e3b\u4f1a\u6837\u5e74\u60f3\u751f\u540c\u8001\u4e2d\u5341\u4ece\u81ea\u9762\u524d\u5934\u9053\u5b83\u540e\u7136\u8d70\u5f88\u50cf\u89c1\u4e24\u7528\u5979\u56fd\u52a8\u8fdb\u6210\u56de\u4ec0\u8fb9\u4f5c\u5bf9\u5f00\u800c\u5df1\u4e9b\u73b0\u5c71\u6c11\u5019\u7ecf\u53d1\u5de5\u5411\u4e8b\u547d\u7ed9\u957f\u6c34\u51e0\u4e49\u4e09\u58f0\u4e8e\u9ad8\u624b\u77e5\u7406\u773c\u5fd7\u70b9\u5fc3\u6218\u4e8c\u95ee\u4f46\u8eab\u65b9\u5b9e\u5403\u505a\u53eb\u5f53\u4f4f\u542c\u9769\u6253\u5462\u771f\u5168\u624d\u56db\u5df2\u6240\u654c\u4e4b\u6700\u5149\u4ea7\u60c5\u8def\u5206\u603b\u6761\u767d\u8bdd\u4e1c\u5e2d\u6b21\u4eb2\u5982\u88ab\u82b1\u53e3\u653e\u513f\u5e38\u6c14\u4e94\u7b2c\u4f7f\u5199\u519b\u5427\u6587\u8fd0\u518d\u679c\u600e\u5b9a\u8bb8\u5feb\u660e\u884c\u56e0\u522b\u98de\u5916\u6811\u7269\u6d3b\u90e8\u95e8\u65e0\u5f80\u8239\u671b\u65b0\u5e26\u961f\u5148\u529b\u5b8c\u5374\u7ad9\u4ee3\u5458\u673a\u66f4\u4e5d\u60a8\u6bcf\u98ce\u7ea7\u8ddf\u7b11\u554a\u5b69\u4e07\u5c11\u76f4\u610f\u591c\u6bd4\u9636\u8fde\u8f66\u91cd\u4fbf\u6597\u9a6c\u54ea\u5316\u592a\u6307\u53d8\u793e\u4f3c\u58eb\u8005\u5e72\u77f3\u6ee1\u65e5\u51b3\u767e\u539f\u62ff\u7fa4\u7a76\u5404\u516d\u672c\u601d\u89e3\u7acb\u6cb3\u6751\u516b\u96be\u65e9\u8bba\u5417\u6839\u5171\u8ba9\u76f8\u7814\u4eca\u5176\u4e66\u5750\u63a5\u5e94\u5173\u4fe1\u89c9\u6b65\u53cd\u5904\u8bb0\u5c06\u5343\u627e\u4e89\u9886\u6216\u5e08\u7ed3\u5757\u8dd1\u8c01\u8349\u8d8a\u5b57\u52a0\u811a\u7d27\u7231\u7b49\u4e60\u9635\u6015\u6708\u9752\u534a\u706b\u6cd5\u9898\u5efa\u8d76\u4f4d\u5531\u6d77\u4e03\u5973\u4efb\u4ef6\u611f\u51c6\u5f20\u56e2\u5c4b\u79bb\u8272\u8138\u7247\u79d1\u5012\u775b\u5229\u4e16\u521a\u4e14\u7531\u9001\u5207\u661f\u5bfc\u665a\u8868\u591f\u6574\u8ba4\u54cd\u96ea\u6d41\u672a\u573a\u8be5\u5e76\u5e95\u6df1\u523b\u5e73\u4f1f\u5fd9\u63d0\u786e\u8fd1\u4eae\u8f7b\u8bb2\u519c\u53e4\u9ed1\u544a\u754c\u62c9\u540d\u5440\u571f\u6e05\u9633\u7167\u529e\u53f2\u6539\u5386\u8f6c\u753b\u9020\u5634\u6b64\u6cbb\u5317\u5fc5\u670d\u96e8\u7a7f\u5185\u8bc6\u9a8c\u4f20\u4e1a\u83dc\u722c\u7761\u5174\u5f62\u91cf\u54b1\u89c2\u82e6\u4f53\u4f17\u901a\u51b2\u5408\u7834\u53cb\u5ea6\u672f\u996d\u516c\u65c1\u623f\u6781\u5357\u67aa\u8bfb\u6c99\u5c81\u7ebf\u91ce\u575a\u7a7a\u6536\u7b97\u81f3\u653f\u57ce\u52b3\u843d\u94b1\u7279\u56f4\u5f1f\u80dc\u6559\u70ed\u5c55\u5305\u6b4c\u7c7b\u6e10\u5f3a\u6570\u4e61\u547c\u6027\u97f3\u7b54\u54e5\u9645\u65e7\u795e\u5ea7\u7ae0\u5e2e\u5566\u53d7\u7cfb\u4ee4\u8df3\u975e\u4f55\u725b\u53d6\u5165\u5cb8\u6562\u6389\u5ffd\u79cd\u88c5\u9876\u6025\u6797\u505c\u606f\u53e5\u533a\u8863\u822c\u62a5\u53f6\u538b\u6162\u53d4\u80cc\u7ec6";
- Random random = new Random();
- int x = 5;
- for (int i = 0; i < 4; i++) {
- // 加入字體旋轉 角度-30 --- 30之間
- int jiaodu = random.nextInt(60) - 30;
- // 轉換角度爲弧度
- double theta = jiaodu * Math.PI / 180;
-
- int randomIndex = random.nextInt(word.length());// 生成下標
- char c = word.charAt(randomIndex);
- // 將字符寫入圖片
- graphics2d.rotate(theta, x, 20);
- graphics2d.drawString(c + "", x, 20);
- graphics2d.rotate(-theta, x, 20);
- x += 30;
- }
-
- // 5 繪製干擾線
- graphics2d.setColor(Color.LIGHT_GRAY);
- int x1;
- int x2;
- int y1;
- int y2;
- for (int i = 0; i < 10; i++) {
- x1 = random.nextInt(width);
- x2 = random.nextInt(width);
- y1 = random.nextInt(height);
- y2 = random.nextInt(height);
-
- graphics2d.drawLine(x1, y1, x2, y2);
- }
- // 釋放內存中資源
- graphics2d.dispose();
-
- // 生成圖片到瀏覽器
- ImageIO.write(bufferedImage, "jpg", response.getOutputStream());
- }
-
- public void doPost(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
- doGet(request, response);
- }
-
- public static void main(String[] args) {
- System.out.println('\u9fa5');
- System.out.println('\u9fa4');
- System.out.println('\u9fa3');
- }
-
- HTML:
- <script type="text/javascript">
- // 點擊切換驗證碼原理 ,從新載入圖片
- function change(){
- // 得到id爲myimg對象 ,從新加載Servlet程序
- document.getElementById("myimg").src= "/day6/response7?"+new Date().getTime();
- }
- </script>
- </head>
- <body>
- <!-- 引用一張圖片,顯示網頁上 -->
- <img src="/day6/response7" onclick="change();" id="myimg" style="cursor: pointer;"/>
- </body>
-
- </span>
HttpServletRequest對象簡介
HttpServletRequest對象表明客戶端請求,當客戶端經過HTTP協議訪問服務器時,,HTTP請求中的全部信息都封裝在這個對象中,咱們能夠經過這個對象的方法 獲取客戶端的請求信息。它繼承於ServletRequest類
經過Request對象進行的經常使用操做
- 獲取客戶機信息
- 獲取請求頭信息
- 獲取請求參數
- 利用請求域傳遞對象
- 重定向和轉發的區別
HttpServletRequest獲取客戶機信息
- getRequestURL方法返回客戶端發出請求的完整URL
- getRequestURI 方法返回請求行中的資源名部分(包含虛擬路徑)
- getQueryString 方法返回請求行中的參數部分
- getRemoteAddr 方法返回發出請求的客戶機的IP地址
- getMethod 獲得客戶機的請求方式
- getContextPath 獲取工程虛擬目錄的名稱
URI和URL區別 ?
URI:/day6/request1
URL:http://localhost/day6/request1
URI範圍比URL大,http://localhost/day6/request1 是URL也是 URI ,/day6/request1 是URI 不是 URL
如何得到當前請求 訪問資源路徑 ? 就是在服務器網站內部路徑
uri : /day6/request1
contextpath : /day6
request.getRequestURI().substring(request.getContextPath().length()); ------ /request1
// 得到請求方式
System.out.println("請求方式:" + request.getMethod());
// 得到協議
System.out.println("協議:" + request.getProtocol());
// 得到請求資源路徑
System.out.println("請求路徑:" + request.getRequestURI());
System.out.println("請求路徑:" + request.getRequestURL());
// 得到請求行中參數
System.out.println("參數:" + request.getQueryString());
// 打印客戶機IP
System.out.println("ip:" + request.getRemoteAddr());
// 得到工程虛擬路徑名稱
System.out.println("虛擬路徑名稱:" + request.getContextPath());
from: http://www.tk4479.net/u013087513/article/details/54587528