jsp练习
<%for (int i = 1; i < 9; i++) {%>
发布日期:2021-07-27 05:23:46
浏览次数:5
分类:技术文章
本文共 2072 字,大约阅读时间需要 6 分钟。
练习一:在 jsp 页面中输出九九乘法口诀表
<%@ page import="java.util.concurrent.ForkJoinPool" %><%-- Created by IntelliJ IDEA. User: It.me Date: 2020/10/2 Time: 17:07 To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" language="java" %>九九乘法表 <%--练习一:在 jsp 页面中输出九九乘法口诀表--%>九九乘法表
<%=j + "x" + i + "=" + (i * j)%> | <% }%>
练习二:jsp 输出一个表格,里面有 10 个学生信息
Student 类:
private Integer id;private String name;private Integer age;private String phone;
StudentServlet程序:
public class StudentServlet extends HttpServlet { protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // 获取请求的参数 // 发sql语句查询学生的信息 // 使用for循环生成查询到的数据做模拟 Liststudents = new ArrayList (); for (int i = 1; i <= 10; i++) { students.add(new Student(i,"name_" + i, 18 + i,"phone_" + i)); } // 保存查询到的结果(学生信息到request域中 request.setAttribute("stuList",students); // 请求转发到showStudent.jsp页面 request.getRequestDispatcher("/exer/showStudent.jsp").forward(request,response); }}
showStudent.jsp页面:
<%@ page import="loey.pojo.Student" %><%@ page import="java.util.List" %><%-- Created by IntelliJ IDEA. User: It.me Date: 2020/10/2 Time: 20:20 To change this template use File | Settings | File Templates.--%><%@ page contentType="text/html;charset=UTF-8" language="java" %>学生信息 <%--练习二:jsp输出一个表格,里面有10个学生信息。--%><% ListstuList = (List ) request.getAttribute("stuList");%> 学生信息表
学号 姓名 年龄 联系方式 操作 <%for (Student stu : stuList) {%><% }%> <%=stu.getId()%> <%=stu.getName()%> <%=stu.getAge()%> <%=stu.getPhone()%> 删除 修改
结果:
转载地址:https://blog.csdn.net/qq_45554909/article/details/111828430 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!
发表评论
最新留言
表示我来过!
[***.240.166.169]2024年09月18日 09时43分25秒
关于作者
喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
How it works(12) Tileserver-GL源码阅读(A) 服务的初始化
2019-05-27
uni-app 全局变量的几种实现方式
2019-05-27
echarts 为例讲解 uni-app 如何引用 npm 第三方库
2019-05-27
uni-app跨页面、跨组件通讯
2019-05-27
springmvc-helloworld(idea)
2019-05-27
JDK下载(百度网盘)
2019-05-27
idea用得溜,代码才能码得快
2019-05-27
一篇掌握python魔法方法详解
2019-05-27
数据结构和算法5-非线性-树
2019-05-27
数据结构和算法6-非线性-图
2019-05-27
数据结构和算法7-搜索
2019-05-27
数据结构和算法8-排序
2019-05-27
windows缺少dll解决办法
2019-05-27
JPA多条件动态查询
2019-05-27
JPA自定义sql
2019-05-27
BigDecimal正确使用了吗?
2019-05-27
joplin笔记
2019-05-27
JNDI+springmvc使用
2019-05-27
vue+springboot分页交互
2019-05-27
vue+springboot打包发布
2019-05-27