最新下载
热门教程
- 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();
}
}
相关文章
- 洛克王国世界炫彩翼王和龙息帕尔选哪个 炫彩翼王和龙息帕尔怎么选 07-27
- 错过了第1个至尊养生服 请不要再错过第2个! 07-27
- 真我gtneo5有耳机孔吗 07-27
- ClawX 官方入口:AI Agent 图形化控制台下载指南 07-27
- 《西游3》三界行者剿匪安商 锄奸惩恶名利双收 07-27
- 摩尔庄园手游七彩草莓冰淇淋菜谱大揭秘 以游戏为主 07-27