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");