include包含将网页信息分为头/体/尾三部份处理-学习笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了include包含将网页信息分为头/体/尾三部份处理-学习笔记相关的知识,希望对你有一定的参考价值。

java
import java.io.IOException;
import java.io.PrintWriter;

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

public class Rdome6 extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        // 取得客户端请求的类型
        String method = request.getMethod();
        System.out.println("method=" + method);

        // 包含head.html(类似于函数调用)
        request.getRequestDispatcher("/common/head.html").include(request,response);
        response.getOutputStream().write("<hr/>".getBytes());

        // 动态生成
        response.getOutputStream().write("login.html".getBytes());
        response.getOutputStream().write("<hr/>".getBytes());

        // 包含foot.html
        request.getRequestDispatcher("/common/foot.html").include(request,response);
        response.getOutputStream().write("<hr/>".getBytes());
    }

}

html

foolt.hmtl

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>head.html</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    foot.html
  </body>
</html>

head.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>head.html</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body>
    head.html
  </body>
</html>

login.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>

  <body>
 login.html
  </body>
</html>

以上是关于include包含将网页信息分为头/体/尾三部份处理-学习笔记的主要内容,如果未能解决你的问题,请参考以下文章

http请求的三大组成部分:请求行、请求头和请求体分别包含哪些内容

java EE : http 协议之请求报文响应报文

zen cart二次开发之二

SIP消息的SIP消息格式

爬虫基础

C++创建一个结构体应该放在.cpp文件中吗?然后调用的时候只要包含这个.cpp文件?