首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

Flex运用Cookie

2012-11-09 
Flex使用Cookie此文转自: http://myflex.wordpress.com/2008/11/12/actionscript-cookie-util/这个工具类,

Flex使用Cookie
此文转自: http://myflex.wordpress.com/2008/11/12/actionscript-cookie-util/

这个工具类,有设置、获取和删除cookie的方法,使用的方法很简单,就是直接import这个类,然后调用CookieUtil这个类的静态方法就可以了。
通过javascript实现了cookie的操作方法,然后再flex中使用ExternalInterface来调用对应的javascript方法。

import de.aggro.utils.CookieUtil;//Set a cookie named mycookie with a value of mycookie value with a time to live of 30 daysCookieUtil.setCookie("mycookie", "mycookie value", 30);//Get that cookie and trace its valuetrace(CookieUtil.getCookie("mycookie")); //Delete the cookie from the users computerCookieUtil.deleteCookie("mycookie");


热点排行