在我的GWT Web应用程序中,我想将一些应用程序数据保存在用户的浏览器cookie中。例如布局条件,由用户改变。我怎么能这样做?
答案 0 :(得分:0)
简单!看着: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/Cookies.html
另请参阅Window对象
答案 1 :(得分:0)
在GWT中有一个类
import com.google.gwt.user.client.Cookies;
这是你在找什么
//get cookie with name of the cookie
String msg = Cookies.getCookie("cookiename");
//set cookie with name
Cookies.setCookie("cookiename",msg);
没有值的Remeber cookie返回null。