最新下载
热门教程
- 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 Cookie c = cookies[i];
out.println(c.getName() + "::" + c.getValue() + "::"
+ c.getComment() + "::" + c.getMaxAge() + "
");
}out.println("
}
out.println("");
out.println("");
out.flush();
}
}
相关文章
- 墨守孤城女巫侠客流玩法搭配攻略 11-17
- 心动小镇沸雪浴场5个虫类攻略 11-17
- 不朽箴言孟婆无限自爆流玩法攻略 11-17
- 墨守孤城毒焰缠墨流玩法搭配攻略 11-17
- 新三国志曹操传沙盘1159层攻略 11-17
- 永远的蔚蓝星球星魄获取途径分享 11-17