okhttp3.Cookie.expiresAt()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(8.0k)|赞(0)|评价(0)|浏览(201)

本文整理了Java中okhttp3.Cookie.expiresAt()方法的一些代码示例,展示了Cookie.expiresAt()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Cookie.expiresAt()方法的具体详情如下:
包路径:okhttp3.Cookie
类名称:Cookie
方法名:expiresAt

Cookie.expiresAt介绍

[英]Returns the time that this cookie expires, in the same format as System#currentTimeMillis(). This is December 31, 9999 if the cookie is #persistent(), in which case it will expire at the end of the current session.

This may return a value less than the current time, in which case the cookie is already expired. Webservers may return expired cookies as a mechanism to delete previously set cookies that may or may not themselves be expired.
[中]返回此cookie过期的时间,格式与System#currentTimeMillis()相同。如果cookie是#persistent(),则这是9999年12月31日,在这种情况下,它将在当前会话结束时过期。
这可能返回小于当前时间的值,在这种情况下,cookie已过期。Web服务器可以返回过期的cookie,作为删除以前设置的cookie的一种机制,这些cookie本身可能过期,也可能不过期。

代码示例

代码示例来源:origin: jeasonlzy/okhttp-OkGo

/** 当前cookie是否过期 */
private static boolean isCookieExpired(Cookie cookie) {
  return cookie.expiresAt() < System.currentTimeMillis();
}

代码示例来源:origin: jeasonlzy/okhttp-OkGo

/** 当前cookie是否过期 */
private static boolean isCookieExpired(Cookie cookie) {
  return cookie.expiresAt() < System.currentTimeMillis();
}

代码示例来源:origin: GitLqr/LQRWeChat

private static boolean isCookieExpired(Cookie cookie) {
  return cookie.expiresAt() < System.currentTimeMillis();
}

代码示例来源:origin: seven332/EhViewer

/**
 * Get cookies for the url. Fill {@code accepted} and {@code expired}.
 */
public void get(HttpUrl url, List<Cookie> accepted, List<Cookie> expired) {
 long now = System.currentTimeMillis();
 Iterator<Map.Entry<Key, Cookie>> iterator = map.entrySet().iterator();
 while (iterator.hasNext()) {
  Cookie cookie = iterator.next().getValue();
  if (cookie.expiresAt() <= now) {
   iterator.remove();
   expired.add(cookie);
  } else if (cookie.matches(url)) {
   accepted.add(cookie);
  }
 }
}

代码示例来源:origin: jeasonlzy/okhttp-OkGo

private void writeObject(ObjectOutputStream out) throws IOException {
  out.defaultWriteObject();
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.expiresAt());
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
  out.writeBoolean(cookie.persistent());
}

代码示例来源:origin: seven332/EhViewer

public ContentValues toContentValues(Cookie cookie) {
 ContentValues contentValues = new ContentValues(9);
 contentValues.put(COLUMN_NAME, cookie.name());
 contentValues.put(COLUMN_VALUE, cookie.value());
 contentValues.put(COLUMN_EXPIRES_AT, cookie.expiresAt());
 contentValues.put(COLUMN_DOMAIN, cookie.domain());
 contentValues.put(COLUMN_PATH, cookie.path());
 contentValues.put(COLUMN_SECURE, cookie.secure());
 contentValues.put(COLUMN_HTTP_ONLY, cookie.httpOnly());
 contentValues.put(COLUMN_PERSISTENT, cookie.persistent());
 contentValues.put(COLUMN_HOST_ONLY, cookie.hostOnly());
 return contentValues;
}

代码示例来源:origin: GitLqr/LQRWeChat

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.persistent() ? cookie.expiresAt() : NON_VALID_EXPIRES_AT);
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
}

代码示例来源:origin: seven332/EhViewer

if (cookie.expiresAt() <= System.currentTimeMillis()) {
 toRemove = set.remove(cookie);

代码示例来源:origin: franmontiel/PersistentCookieJar

private static boolean isCookieExpired(Cookie cookie) {
  return cookie.expiresAt() < System.currentTimeMillis();
}

代码示例来源:origin: limedroid/XDroidMvp

private static boolean isCookieExpired(Cookie cookie) {
  return cookie.expiresAt() < System.currentTimeMillis();
}

代码示例来源:origin: seven332/EhViewer

public static Cookie newCookie(Cookie cookie, String newDomain, boolean forcePersistent,
    boolean forceLongLive, boolean forceNotHostOnly) {
  Cookie.Builder builder = new Cookie.Builder();
  builder.name(cookie.name());
  builder.value(cookie.value());
  if (forceLongLive) {
    builder.expiresAt(Long.MAX_VALUE);
  } else if (cookie.persistent()) {
    builder.expiresAt(cookie.expiresAt());
  } else if (forcePersistent) {
    builder.expiresAt(Long.MAX_VALUE);
  }
  if (cookie.hostOnly() && !forceNotHostOnly) {
    builder.hostOnlyDomain(newDomain);
  } else {
    builder.domain(newDomain);
  }
  builder.path(cookie.path());
  if (cookie.secure()) {
    builder.secure();
  }
  if (cookie.httpOnly()) {
    builder.httpOnly();
  }
  return builder.build();
}

代码示例来源:origin: limedroid/XDroidMvp

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.expiresAt());
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
  out.writeBoolean(cookie.persistent());
}

代码示例来源:origin: franmontiel/PersistentCookieJar

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.persistent() ? cookie.expiresAt() : NON_VALID_EXPIRES_AT);
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
}

代码示例来源:origin: lygttpod/RxHttpUtils

private void writeObject(ObjectOutputStream out) throws IOException {
  out.defaultWriteObject();
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.expiresAt());
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
  out.writeBoolean(cookie.persistent());
}

代码示例来源:origin: devinhu/androidone

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.expiresAt());
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
  out.writeBoolean(cookie.persistent());
}

代码示例来源:origin: jinguangyue/Android-CustomCamera

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.expiresAt());
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
  out.writeBoolean(cookie.persistent());
}

代码示例来源:origin: WallaceXiao/StockChart-MPAndroidChart

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookies.name());
  out.writeObject(cookies.value());
  out.writeLong(cookies.expiresAt());
  out.writeObject(cookies.domain());
  out.writeObject(cookies.path());
  out.writeBoolean(cookies.secure());
  out.writeBoolean(cookies.httpOnly());
  out.writeBoolean(cookies.hostOnly());
  out.writeBoolean(cookies.persistent());
}

代码示例来源:origin: 0xm1nam0/RxCore

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookie.name());
  out.writeObject(cookie.value());
  out.writeLong(cookie.expiresAt());
  out.writeObject(cookie.domain());
  out.writeObject(cookie.path());
  out.writeBoolean(cookie.secure());
  out.writeBoolean(cookie.httpOnly());
  out.writeBoolean(cookie.hostOnly());
  out.writeBoolean(cookie.persistent());
}

代码示例来源:origin: AlarmZeng/BaseProject

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookies.name());
  out.writeObject(cookies.value());
  out.writeLong(cookies.expiresAt());
  out.writeObject(cookies.domain());
  out.writeObject(cookies.path());
  out.writeBoolean(cookies.secure());
  out.writeBoolean(cookies.httpOnly());
  out.writeBoolean(cookies.hostOnly());
  out.writeBoolean(cookies.persistent());
}

代码示例来源:origin: fangxiaogang/WanAndroidxg

private void writeObject(ObjectOutputStream out) throws IOException {
  out.writeObject(cookies.name());
  out.writeObject(cookies.value());
  out.writeLong(cookies.expiresAt());
  out.writeObject(cookies.domain());
  out.writeObject(cookies.path());
  out.writeBoolean(cookies.secure());
  out.writeBoolean(cookies.httpOnly());
  out.writeBoolean(cookies.hostOnly());
  out.writeBoolean(cookies.persistent());
}

相关文章