最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
jsp servlet cookie 遍历代码
时间:2022-06-29 02:40:03 编辑:袖梨 来源:一聚教程网
jsp教程 servlet cookie 遍历代码
import java.io.IOException;
import java.io.PrintWriter;import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;public class Cookies extends HttpServlet {
");
public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException,
IOException {
resp.setContentType("text/html");
req.getSession();
PrintWriter out = resp.getWriter();
Cookie cookies[] = req.getCookies();
out.println("");
out.println("
out.println("Servlet Cookie Information ");
out.println("");
out.println("");if ((cookies == null) || (cookies.length == 0)) {
out.println("No Cookies found
");
} else {out.println("
"); Cookies found
");
for (int i = 0; i < cookies.length; i++) {
Cookie c = cookies[i];
out.println(c.getName() + "::" + c.getValue() + "::"
+ c.getComment() + "::" + c.getMaxAge() + "
");
}out.println("
}
out.println("");
out.println("");
out.flush();
}
}
相关文章
- 幻兽帕鲁饲料箱怎么做 饲料箱制造方法介绍 07-31
- 燕云十六声天泉地位怎么晋升 天泉门派晋升方法 07-31
- 明末渊虚之羽龟纽金宝有什么用 龟纽金宝用途介绍 07-31
- 幻兽帕鲁怎么去掉无用词条 去掉无用词条方法介绍 07-31
- 人渣SCUM未安装EasyAntiCheat启动错误如何解决 解决方法一览 07-31
- 明末渊虚之羽羽族遗骸有什么用 羽族遗骸获取位置介绍 07-31