package cookie.test;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.LinkedHashMap;
import java.util.Map;
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 CookieDemo3 extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setCharacterEncoding("UTF-8");
response.setContentType("text/html);charset=UTF-8");
PrintWriter out = response.getWriter();
//輸出網站商品
out.write("本網站有如下書籍:<br/>");
Map<String,Book> map = Db.getAll();
for(Map.Entry<String,Book>entry:map.entrySet()) {
Book book = entry.getValue();
out.println("<a href='/cookie/servlet/CookieDemo4?id="+book.getId()+"' target='_blank'>"+book.getName()+"</a><br/>");
}
//2,顯示使用者看過的商品
out.print("<br/>您曾經瀏覽過的商品:<br/>");
Cookie cookies[]=request.getCookies();
for(int i=0;cookies!=null && i<cookies.length;i++) {
if(cookies[i].getName().equals("bookHistory")) {
String ids[] = cookies[i].getValue().split("\\,");
for(String id:ids) {
Book book = Db.getAll().get(id);
out.print(book.getName()+"<br/>");
}
}
}
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
}
}
class Db{
//private Map map = new HashMap();
private static Map<String,Book> map = new LinkedHashMap<String,Book>();
static {
map.put("1",new Book("1","水滸傳","施耐庵","名著"));
map.put("2",new Book("2","三國演義","羅貫中","名著"));
map.put("3",new Book("3","西遊記","吳承恩","名著"));
map.put("4",new Book("4","紅樓夢","曹雪芹","名著"));
map.put("5",new Book("5","文章中含有違禁內容: 金!瓶!梅!","笑笑生","名著"));
}
public static Map<String, Book> getAll() {
return map;
}
}
class Book{
private String id;
private String name;
private String author;
private String description;
public Book() {
super();
// TODO Auto-generated constructor stub
}
public Book(String id, String name, String author, String description) {
super();
this.id = id;
this.name = name;
this.author = author;
this.description = description;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}
package cookie.test;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import javax.servlet.ServletException;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
//顯示商品詳細資訊的servlet
public class CookieDemo4 extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setCharacterEncoding("UTF-8");
response.setContentType("text/html);charset=UTF-8");
PrintWriter out = response.getWriter();
//根據使用者帶過來的id,顯示相應商品的詳細資訊
String id = request.getParameter("id");
Book book = (Book)Db.getAll().get(id);
out.write(book.getId() + "<br/>");
out.write(book.getName() + "<br/>");
out.print(book.getAuthor() + "<br/>");/////////////////////////////
out.write(book.getDescription() + "<br/>");
//構建cookie
String cookieValue= buildCookie(id,request);
Cookie cookie = new Cookie("bookHistory",cookieValue);
cookie.setMaxAge(3600*24*30);
cookie.setPath("/cookie");
response.addCookie(cookie);
}
private String buildCookie(String id, HttpServletRequest request) {
//bookHistory = null
String bookHistory = null;
Cookie cookies[] = request.getCookies();
for(int i=0;cookies!=null&&i<cookies.length;i++) {
if(cookies[i].getName().equals("bookHistory"));
bookHistory = cookies[i].getValue();
}
if(bookHistory==null) {
return id;
}
LinkedList<String> list = new LinkedList<String>(Arrays.asList(bookHistory.split("\\,")));
if(list.contains(id)) {
list.remove(id);
//list.addFirst(id);
}else {
if(list.size()>=3) {
list.removeLast();
//list.addFirst(id);
}//else
//list.addFirst(id);
}
list.addFirst(id);
StringBuffer sb = new StringBuffer();
for(String bid : list) {
sb.append(bid + ",");
}
return sb.deleteCharAt(sb.length()-1).toString();
/*Cookie cookie[] = request.getCookies();
for(Cookie c:cookie) {
if(c.getName().equals("bookHistory")) {
String str = c.getValue();
if(str.matches(".+"+id+".+")) {
str = str.replace(",?"+id+",?",",");
str = str + id;
}else {
str = str+","+id;
}
return str;
}
}
return id;*/
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
}
}