码迷,mamicode.com
首页 > 其他好文 > 详细

Base64解码,编码

时间:2019-08-02 14:52:22      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:request   安全   tostring   lse   getname   equals   flag   解码   item   

//解码
List<CartItem> cart = null;
		
		Cookie[] cookies = request.getCookies();
		boolean flag = true;
		for (Cookie cookie : cookies) {
			if(EGO_CART_COOKIE.equals(cookie.getName())){
				String value = cookie.getValue();
				Decoder decoder = Base64.getDecoder();
				byte[] decode = decoder.decode(value);
				String jsonString = new String(decode);
				cart = JsonUtils.jsonToList(jsonString, CartItem.class);
				flag = false;
				break;
			}
		}


//加入cookie之前,Base64编码
			String json = JsonUtils.objectToJson(cart);
			Encoder encoder = Base64.getEncoder();
			String encodeToString = encoder.encodeToString(json.getBytes()); 
			Cookie c = new Cookie(EGO_CART_COOKIE, encodeToString);
			
			//暴露cookie,所有人可以访问
			//这种方式不安全,我们需要通过domain属性来设置一个域名保护
			c.setPath("/");
			
			response.addCookie(c);

  

Base64解码,编码

标签:request   安全   tostring   lse   getname   equals   flag   解码   item   

原文地址:https://www.cnblogs.com/cqming/p/11288333.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!