54include对象

简介: 54include对象
建立一个test11对象
<%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8"
     pageEncoding="UTF-8"%>
 <!DOCTYPE html>
 <html>
 <head>
 <meta charset="ISO-8859-1">
 <title>Insert title here</title>
 </head>
 <body>
 <h1>pagecontext</h1>
 <hr>
 用户名:<%=pageContext.getSession().getAttribute("username") %><br>
 <%
     //跳转到注册页面
     //pageContext.forward("test08.jsp");
     pageContext.include("include.jsp");
 %>
 </body>
 </html>建立一个include对象
<%@ page language="java" import="java.util.*,java.text.*" contentType="text/html; charset=UTF-8"
     pageEncoding="UTF-8"%>
 <%
     String path=request.getContextPath();
     String basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
     Date date=new Date();
     SimpleDateFormat sdf=new SimpleDateFormat("yyyy年MM月dd日");
     String s=sdf.format(date);
     out.println(s);
 %>

image.png

相关文章
|
6月前
|
编译器 C语言
#include
#include
115 0
|
1月前
|
编译器 C++
#include<> 与#include ""的区别
在C++中,`#include &lt;&gt;` 和 `#include &quot;&quot;` 都用于包含头文件,但使用场景不同。`#include &lt;&gt;` 用于包含系统标准库头文件,编译器会在标准库路径中查找;而 `#include &quot;&quot;` 用于包含用户自定义的头文件,编译器会优先在当前项目目录中查找。
|
1月前
include 的应用练习
include 的应用练习。
19 7
|
5月前
#include的应用练习
【6月更文挑战第22天】#include的应用练习。
34 2
|
5月前
|
编译器 C语言 C++
C++中.h和.hpp文件有什么区别?
C++中.h和.hpp文件有什么区别?
|
6月前
|
存储
include函数
【2月更文挑战第15天】include函数。
69 2
|
6月前
#include 的应用练习
#include 的应用练习。
53 3
|
6月前
|
编译器 程序员 C++
[C++] #ifndef和#define与#pragma once在头文件中的作用和关系
[C++] #ifndef和#define与#pragma once在头文件中的作用和关系
93 0
|
C++
万能头文件#include<bits/stdc++.h>
#include<bits/stdc++.h>这个头文件的含义
367 1