在我的 GWT Web 应用程序中,我想将我的一些应用程序数据保存在用户的浏览器 cookie 中。例如布局条件,由用户更改。我怎样才能做到这一点?
问问题
362 次
2 回答
0
简单的!看看:http: //google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/user/client/Cookies.html
还要看看 Window 对象
于 2013-02-05T14:18:33.103 回答
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);
记住没有值的 cookie 返回 null 。
于 2013-02-05T14:19:21.573 回答