溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java?Servlet響應(yīng)httpServletResponse過程是什么

發(fā)布時間:2022-03-01 09:06:07 來源:億速云 閱讀:176 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Java Servlet響應(yīng)httpServletResponse過程是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“Java Servlet響應(yīng)httpServletResponse過程是什么”吧!

    一、核心方法

    1.setStatus

    設(shè)置響應(yīng)狀態(tài)碼 如果沒有調(diào)用這個方法,默認返回200狀態(tài)碼(前提:正常執(zhí)行,沒有異常) 如果出現(xiàn)異常,返回500

    前端代碼:

    <body>
        <h4>設(shè)置響應(yīng)頭</h4>
        <input type="text" id="status">
        <br>
        <button onclick="setStatus()">提交</button>
    </body>
    <script>
        function setStatus(){
            //js中發(fā)送請求:(1)ajax(2)直接修改url
            let status = document.querySelector("#status");
            //后端會設(shè)置文本框輸入的值為響應(yīng)狀態(tài)碼:嚴格來做需要驗證(省略)
            window.location.href = "response?status="+status.value;
        }
    </script>

    后端代碼:

    @WebServlet("/response")
    public class ResponseStudyServlet extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            //獲取請求發(fā)送的queryString數(shù)據(jù):status=xxx
            String status = req.getParameter("status");
            resp.setStatus((Integer.parseInt(status)));
            resp.getWriter().write("設(shè)置響應(yīng)狀態(tài)碼成功");
        }
    }

    前端顯示:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    提交后fiddler抓包:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    2.setHeader(String name,String value)

    設(shè)置響應(yīng)頭

    響應(yīng)頭name鍵已有,會覆蓋原有的鍵值對

    前端代碼:

    <h4>設(shè)置響應(yīng)頭</h4>
    <a href="response" rel="external nofollow" >設(shè)置</a>

    后端代碼:

    //設(shè)置響應(yīng)頭的鍵值對,鍵可以是標準的http響應(yīng)頭的鍵,也可以是自定義的
    //響應(yīng)狀態(tài)碼是301,302,307,響應(yīng)頭有Location字段,才是重定向
    resp.setHeader("Location","http://www.baidu.com");
    resp.setHeader("username","張三");

    fiddler抓包結(jié)果:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    3.addHeader(String name,String value)

    設(shè)置響應(yīng)頭

    響應(yīng)頭name鍵已有,不會影響,添加一個新的

    這兩個了解即可

    4.setContentType(String type)

    設(shè)置響應(yīng)頭Content-Type的值,等同于setHeader(“Content-Type”,String type) 因為Content-Type是標識body的數(shù)據(jù)格式,所以還需要設(shè)置body的內(nèi)容

    1.響應(yīng)一個網(wǎng)頁

    //響應(yīng)html:設(shè)置響應(yīng)的Content-Type
    resp.setContentType("text/html; charset=utf-8");

    可以返回靜態(tài)和動態(tài)網(wǎng)頁

    兩種方式展示:

    前端代碼:

    <body>
        <h4>返回響應(yīng)正文為簡單的html</h4>
        <a href="html?type=1" rel="external nofollow" >查看</a>
    
        <h4>返回響應(yīng)正文為復(fù)雜的html(動態(tài)變化的)</h4>
        <input type="text" id="username" placeholder="輸入姓名">
        <br>
        <button onclick="toWelcome()">跳轉(zhuǎn)</button>
    </body>
    <script>
        function toWelcome(){
            let username = document.querySelector("#username");
            window.location.href = "html?type=2&username="+username.value;
        }
    </script>

    后端代碼:

    @WebServlet("/html")
    public class HTMLTypeServlet extends HttpServlet {
    
        //html?type=...
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            //響應(yīng)html:設(shè)置響應(yīng)的Content-Type
            resp.setContentType("text/html; charset=utf-8");
    
            PrintWriter pw = resp.getWriter();
    
            //獲取queryString中,type的值
            String type = req.getParameter("type");
            if("1".equals(type)){//返回簡單的html
                pw.println("<h4>獲取網(wǎng)頁成功</h4>");
            }else if("2".equals(type)){//返回復(fù)雜的動態(tài)html
                //html?type=2&username=xxx
                String username = req.getParameter("username");
                pw.println("<p>");
                pw.println("歡迎你,"+username);
                pw.println("</p>");
            }
        }
    }

    簡單:

    前端顯示:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    點擊“查看”:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    動態(tài):

    前端顯式:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    點擊“跳轉(zhuǎn)”:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    關(guān)于動態(tài)網(wǎng)頁:在Java的代碼中,寫很多html的代碼

    耦合性太強(兩個完全不同的編程語言,放在一起來開發(fā))、維護性、擴展性很差

    解決方式:

    • 模板技術(shù)

    • 這種方式還存在一些問題,進一步發(fā)展就有了ajax技術(shù)的產(chǎn)生

    二、響應(yīng)一個網(wǎng)頁

    返回已有的一個網(wǎng)頁

    (1)重定向:

    特點:url地址欄會變,發(fā)起兩次請求

    原理:

    第一次返回301/302/307響應(yīng)狀態(tài)碼,及響應(yīng)頭Location:網(wǎng)頁的地址

    第二次:瀏覽器自動的跳轉(zhuǎn)到Location設(shè)置的地址

    還是比較常用的:比如登錄成功(其實也可以在js代碼中跳轉(zhuǎn))后,跳轉(zhuǎn)到某個首頁

    (2)轉(zhuǎn)發(fā):

    特點:url地址欄不變,只有一次請求

    原理:當次請求Servlet時,由Servlet獲取到轉(zhuǎn)發(fā)路徑的html,把這個路徑的內(nèi)容設(shè)置到響應(yīng)正文

    前端代碼:

    <h4>重定向到hello.html</h4>
    <a href="goto?type=1" rel="external nofollow" >跳轉(zhuǎn)</a>
    <h4>轉(zhuǎn)發(fā)到hello.html</h4>
    <a href="goto?type=2" rel="external nofollow" >跳轉(zhuǎn)</a>

    后端代碼:

    @WebServlet("/goto")
    public class GoToServlet extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            //goto?type=xxx
            String type = req.getParameter("type");
            if("1".equals(type)){//重定向
    //            resp.setStatus(301);
    //            resp.setHeader("Location","hello.html");
                //以上代碼可以簡化為sendRedirect
                resp.sendRedirect("hello.html");
            }else if("2".equals(type)){//轉(zhuǎn)發(fā)
                req.getRequestDispatcher("hello.html")
                        .forward(req,resp);
            }
        }
    }

    三、返回一個文件

    設(shè)置一下Content-Type,然后把文件的二進制數(shù)據(jù)放在響應(yīng)正文就可以

    前端代碼:

    <h4>獲取一個圖片(渲染展示)</h4>
    <img src="file?type=photo&show=1">
    <h4>獲取一個音樂(渲染展示)</h4>
    <audio src="file?type=music&show=1" controls></audio>
    
    <h4>獲取一個圖片(下載)</h4>
    <a href="file?type=photo&show=0" rel="external nofollow" >下載</a>
    <h4>獲取一個音樂(下載)</h4>
    <audio src="file?type=music&show=0" controls></audio>

    后端代碼:

    @WebServlet("/file")
    public class FileServlet extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            //<img src="file?type=photo&show=1">
    
            //獲取響應(yīng)對象的字節(jié)輸出流
            OutputStream os = resp.getOutputStream();
            //返回的文件類型:1.圖片 2.音樂
            String type = req.getParameter("type");
            //返回時的操作:1.渲染 2.下載
            String show = req.getParameter("show");
    
            File file = null;
            byte[] data = null;
            //<img src="file?type=photo&show=1">
            if("photo".equals(type)){//返回圖片
                if("1".equals(show)){
                    resp.setContentType("image/jpeg");//jpg格式
                }else{
                    //這樣只是沒有設(shè)置下載的文件名,有興趣可以自行擴展完成
                    resp.setContentType("application/octet-stream");
                }
    
                file =new File("D:\\java\\servlet-study\\src\\main\\resources\\cui.jpg");
                //<audio src="file?type=music&show=1" controls></audio>
            }else if("music".equals(type)){//返回音樂
                if("1".equals(show)){
                    resp.setContentType("audio/mp3");//mp3格式
                }else{
                    resp.setContentType("application/octet-stream");
                }
                file = new File("D:\\java\\servlet-study\\src\\main\\resources\\這世界有那么多人.mp3");
            }//其他格式可以自行擴展完成
            //返回一個文件類型:Content-Length,body
            data = Files.readAllBytes(file.toPath());
            resp.setContentLength(data.length);//setHeader("Content-Length",xxx)
            os.write(data);
        }
    }

    問題:圖片、音樂、視頻是靜態(tài)文件,直接放在web應(yīng)用webapp下,就可以直接訪問,那還需要Servlet來返回么?是否多此一舉?

    如果文件總的大小非常大,放在web應(yīng)用的webapp下就不合適了:打包就比較費勁,使用Servlet去讀取本地其他地方的文件,來返回,就比較適合

    四、返回json數(shù)據(jù)

    常用于ajax請求,返回一些數(shù)據(jù),用于動態(tài)的填充網(wǎng)頁

    前端代碼:

    <body>
        <h4>獲取ajax響應(yīng)數(shù)據(jù),動態(tài)生成網(wǎng)頁內(nèi)容</h4>
        <button onclick="gen()">試試</button>
        <div id="content"></div>
    </body>
    <script>
        function gen(){
            let content = document.querySelector("#content");
            ajax({
                url: "ajax-response",
                method: "get",
                callback: function(status,resp){
                    console.log(resp);//resp是一個字符串
                    //轉(zhuǎn)換為json對象
                    let array = JSON.parse(resp);
                    for(json of array){//遍歷
                        //每一個json對象,創(chuàng)建一個dom來保存信息
                        let p = document.createElement("p");
                        p.innerHTML = json.from+" 對 "+json.to+" 說:"+json.info;
                        content.appendChild(p);
                    }
                }
            });
        }
        function ajax(args){//var ajax = function(){}
            let xhr = new XMLHttpRequest();
            //設(shè)置回調(diào)函數(shù)
            xhr.onreadystatechange = function(){
                //4:客戶端接收到響應(yīng)后回調(diào)
                if(xhr.readyState == 4){
                    // 回調(diào)函數(shù)可能需要使用響應(yīng)的內(nèi)容,作為傳入?yún)?shù)
                    args.callback(xhr.status,xhr.responseText);
                }
            }
            xhr.open(args.method,args.url);
            // 如果args中,Content-Type屬性有內(nèi)容,就設(shè)置Content-Type請求頭
            if(args.contentType){//js中,除了判斷boolean值,還可以判斷字符串,對象等,有值就為true
                xhr.setRequestHeader("Content-Type",args.contentType);
            }
            //如果args中,設(shè)置了body請求正文,調(diào)用send(body)
            if(args.body){
                xhr.send(args.body);
            }else{//如果沒有設(shè)置,調(diào)用send()
                xhr.send();
            }
        }
    </script>

    后端代碼:

    @WebServlet("/ajax-response")
    public class AjaxJsonServlet extends HttpServlet {
        @Override
        protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
            List<Message> messages = new ArrayList<>();
            Message m1 = new Message("汪汪","喵喵","我喜歡你");
            Message m2 = new Message("喵喵","汪汪","我喜歡你");
            messages.add(m1);
            messages.add(m2);
            ObjectMapper mapper = new ObjectMapper();
            //把Java對象,轉(zhuǎn)換為一個json字符串,list和數(shù)組會轉(zhuǎn)換為[],一個對象{成員變量名:值}
            String json = mapper.writeValueAsString(messages);
            //[{"from":"汪汪","to":"喵喵","info":"我喜歡你"},{"from":"喵喵","to":"汪汪","info":"我喜歡你"}]
            System.out.println("轉(zhuǎn)換的json字符串"+json);
    
            //設(shè)置json可以不設(shè)置Content-Length,tomcat會設(shè)置
            resp.setContentType("application/json; charset=utf-8");
            resp.getWriter().println(json);
        }
    
        static class Message{
            private String from;//誰
            private String to;//對誰
            private String info;//說了什么
    
            public Message(String from, String to, String info) {
                this.from = from;
                this.to = to;
                this.info = info;
            }
    
            public String getFrom() {
                return from;
            }
    
            public void setFrom(String from) {
                this.from = from;
            }
    
            public String getTo() {
                return to;
            }
    
            public void setTo(String to) {
                this.to = to;
            }
    
            public String getInfo() {
                return info;
            }
    
            public void setInfo(String info) {
                this.info = info;
            }
        }
    }

    點擊“試試”:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    具體過程:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    對應(yīng)可以使用的數(shù)據(jù)格式:

    Java?Servlet響應(yīng)httpServletResponse過程是什么

    到此,相信大家對“Java Servlet響應(yīng)httpServletResponse過程是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

    向AI問一下細節(jié)

    免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

    AI