JSP指令应用实例
实训内容和要求
编写三个 JSP 页面:first.jsp、second.jsp 和 third.jsp。另外,要求用“记事本”编写一个 hello.txt 文件。hello.txt 中的每行都有若干个英文单词,这些单词之间用空格分隔,每行之间用 <br> 分隔,如下所示:
package apple void back public <br> private throw class hello welcome
实训步骤
(1) first.jsp 的具体要求。first.jsp 使用 page 指令设置 contentType 属性的值为 text/plain,使用 include 指令静态插入 hello.txt 文件。first.jsp 的代码如下:
<%@ page contentType="text/plain" %> <html> <body> <font Size=4 color=blue> <%@ include file="hello.txt" %> </font> </body> </html>
(2) second.jsp 的具体要求。
second.jsp 使用 page 指令设置 contentType 属性的值为 application/vn.ms-powerpoint,使用 include 指令静态插入 hello.txt 文件。second.jsp 的代码如下:
<%@ page contentType="application/vnd.ms-powerpoint" %> <html> <body> <font Size=2 color=blue> <%@ include file="hello.txt" %> </font> </body> </html>
(3) third.jsp 的具体要求。
third.jsp 使用 page 指令设置 contentType 属性的值为 application/msword,使用 include 指令静态插入 hello.txt 文件。third.jsp 的代码如下:
<%@ page contentType="application/msword" %> <html> <body> <font Size=4 color=blue> <%@ include file="hello.txt" %> </font> </body> </html>
所有教程
- C语言入门
- C语言编译器
- C语言项目案例
- 数据结构
- C++
- STL
- C++11
- socket
- GCC
- GDB
- Makefile
- OpenCV
- Qt教程
- Unity 3D
- UE4
- 游戏引擎
- Python
- Python并发编程
- TensorFlow
- Django
- NumPy
- Linux
- Shell
- Java教程
- 设计模式
- Java Swing
- Servlet
- JSP教程
- Struts2
- Maven
- Spring
- Spring MVC
- Spring Boot
- Spring Cloud
- Hibernate
- Mybatis
- MySQL教程
- MySQL函数
- NoSQL
- Redis
- MongoDB
- HBase
- Go语言
- C#
- MATLAB
- JavaScript
- Bootstrap
- HTML
- CSS教程
- PHP
- 汇编语言
- TCP/IP
- vi命令
- Android教程
- 区块链
- Docker
- 大数据
- 云计算