博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jsp内置对象作业2-留言簿
阅读量:6300 次
发布时间:2019-06-22

本文共 1971 字,大约阅读时间需要 6 分钟。

1.留言簿页面:liuYan.jsp

1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2     pageEncoding="UTF-8" %> 3      4 <%@ page import= "java.net.URLDecoder" %> 5  6 <%@ page import="java.util.*" %> 7  8  9 10 
11 留言薄12 13 14

留言薄

15 <%16 Cookie[] co = request.getCookies();17 18 String nc = "";19 String ly = "";20 21 //ArrayList
ar = new ArrayList<>();22 23 if(co != null)24 {25 for(int i = 0; i < co.length; i++)26 {27 if(co[i].getName().equals("myco"))28 {29 //String mes = "";30 31 nc = URLDecoder.decode(co[i].getValue().split("#")[0]);32 33 ly = URLDecoder.decode(co[i].getValue().split("#")[1]);34 35 //ar.add(mes);36 37 out.print("
昵称:" + nc +"
留言:" + ly + "
");38 }39 }40 41 /*42 for(int i = 0; i < ar.size(); i ++)43 {44 out.print("
昵称:" + ar.get(i).split("#") +"
留言:" + ar.get(i).split("#")[1] + "
"); 45 }46 */47 }48 else49 {50 out.print("暂时没有留言");51 }52 %>53
54
55 请输入昵称:
56 57 请输入您的留言:
58
59
60
61 62
63 64

2,留言处理页面, xianShi.jsp

1 <%@ page language="java" contentType="text/html; charset=UTF-8" 2     pageEncoding="UTF-8" errorPage="error1.jsp"%> 3      4 <%@ page import="java.net.URLEncoder" %> 5  6  7  8  9 
10 留言处理页11 12 13 <%14 //request.setCharacterEncoding("GB18030");15 16 //String nc = URLEncoder.encode(request.getParameter("nc"),"UTF-8");17 String nc = URLEncoder.encode(new String(request.getParameter("nc").getBytes("ISO-8859-1"),"UTF-8"));18 String ly = URLEncoder.encode(new String(request.getParameter("ly").getBytes("ISO-8859-1"),"UTF-8"));19 20 Cookie co = new Cookie("myco",nc + "#" + ly);21 22 co.setMaxAge(60*60*24*30);23 24 response.addCookie(co);25 26 //out.print();27 28 response.sendRedirect("liuYan.jsp");29 %>30 31 32 33

 

转载地址:http://bbgta.baihongyu.com/

你可能感兴趣的文章
hydra暴力破解SSH、HTTP、MySQL等密码
查看>>
当ORACLE归档日志满后如何正确删除归档日志
查看>>
F5 APM针对Vmware view7.3 VDI业务发布测试问题分析
查看>>
javascript ------->this 和json
查看>>
在CentOS7下同时安装、使用Python2.x和Python3.x
查看>>
OpenStack 定制CoreOS镜像
查看>>
ArcGIS API for JS 中的style
查看>>
20.目录创建与目录删除
查看>>
数据库基础知识讲解
查看>>
金额格式化
查看>>
Linux基础知识
查看>>
10秒内失败登录了3次 屏蔽ip登录
查看>>
处理JSON数据
查看>>
rpm安装的php 通过编译增加模块
查看>>
让 FCKeditor 支持多用户Web环境(以PHP为例)
查看>>
Android官方开发文档Training系列课程中文版:Activity测试之创建功能性测试
查看>>
kafka初装学习
查看>>
微访谈:引爆微博舆论爆发的导火索
查看>>
High-availability MongoDB Cluster Configuration Solutions
查看>>
蚂蚁分类信息系统 5.8 增加七牛云存储插件
查看>>