当前位置: 首页>>代码示例>>Java>>正文


Java Cookie.getComment方法代码示例

本文整理汇总了Java中javax.servlet.http.Cookie.getComment方法的典型用法代码示例。如果您正苦于以下问题:Java Cookie.getComment方法的具体用法?Java Cookie.getComment怎么用?Java Cookie.getComment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.servlet.http.Cookie的用法示例。


在下文中一共展示了Cookie.getComment方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addCookie

import javax.servlet.http.Cookie; //导入方法依赖的package包/类
@Override
public void addCookie(Cookie cookie)
{
    String comment = cookie.getComment();
    boolean httpOnly = false;

    if (comment != null)
    {
        int i = comment.indexOf(HTTP_ONLY_COMMENT);
        if (i >= 0)
        {
            httpOnly = true;
            comment = comment.replace(HTTP_ONLY_COMMENT, "").trim();
            if (comment.length() == 0)
                comment = null;
        }
    }
    addSetCookie(cookie.getName(),
            cookie.getValue(),
            cookie.getDomain(),
            cookie.getPath(),
            cookie.getMaxAge(),
            comment,
            cookie.getSecure(),
            httpOnly || cookie.isHttpOnly(),
            cookie.getVersion());
}
 
开发者ID:jmfgdev,项目名称:gitplex-mit,代码行数:28,代码来源:Response.java

示例2: encodeCookie

import javax.servlet.http.Cookie; //导入方法依赖的package包/类
/**
 * Encode a cookie as per RFC 2109.  The resulting string can be used
 * as the value for a <code>Set-Cookie</code> header.
 *
 * @param cookie The cookie to encode.
 * @return A string following RFC 2109.
 */
public static String encodeCookie(Cookie cookie) {

    StringBuffer buf = new StringBuffer( cookie.getName() );
    buf.append("=");
    buf.append(cookie.getValue());

    if (cookie.getComment() != null) {
        buf.append("; Comment=\"");
        buf.append(cookie.getComment());
        buf.append("\"");
    }

    if (cookie.getDomain() != null) {
        buf.append("; Domain=\"");
        buf.append(cookie.getDomain());
        buf.append("\"");
    }

    long age = cookie.getMaxAge();
    if (cookie.getMaxAge() >= 0) {
        buf.append("; Max-Age=\"");
        buf.append(cookie.getMaxAge());
        buf.append("\"");
    }

    if (cookie.getPath() != null) {
        buf.append("; Path=\"");
        buf.append(cookie.getPath());
        buf.append("\"");
    }

    if (cookie.getSecure()) {
        buf.append("; Secure");
    }

    if (cookie.getVersion() > 0) {
        buf.append("; Version=\"");
        buf.append(cookie.getVersion());
        buf.append("\"");
    }

    return (buf.toString());
}
 
开发者ID:c-rainstorm,项目名称:jerrydog,代码行数:51,代码来源:RequestUtil.java

示例3: getCookieHeaderValue

import javax.servlet.http.Cookie; //导入方法依赖的package包/类
/** Return the header value used to set this cookie
 */
public static void getCookieHeaderValue(Cookie cookie, StringBuffer buf) {
    int version = cookie.getVersion();

    // this part is the same for all cookies

    String name = cookie.getName();     // Avoid NPE on malformed cookies
    if (name == null)
        name = "";
    String value = cookie.getValue();
    if (value == null)
        value = "";

    buf.append(name);
    buf.append("=");
    maybeQuote(version, buf, value);

    // add version 1 specific information
    if (version == 1) {
        // Version=1 ... required
        buf.append (";Version=1");

        // Comment=comment
        if (cookie.getComment() != null) {
            buf.append (";Comment=");
            maybeQuote (version, buf, cookie.getComment());
        }
    }

    // add domain information, if present

    if (cookie.getDomain() != null) {
        buf.append(";Domain=");
        maybeQuote (version, buf, cookie.getDomain());
    }

    // Max-Age=secs/Discard ... or use old "Expires" format
    if (cookie.getMaxAge() >= 0) {
        if (version == 0) {
            buf.append (";Expires=");
            if (cookie.getMaxAge() == 0)
                DateTool.oldCookieFormat.format(new Date(10000), buf,
                                                new FieldPosition(0));
            else
                DateTool.oldCookieFormat.format
                    (new Date( System.currentTimeMillis() +
                               cookie.getMaxAge() *1000L), buf,
                     new FieldPosition(0));
        } else {
            buf.append (";Max-Age=");
            buf.append (cookie.getMaxAge());
        }
    } else if (version == 1)
      buf.append (";Discard");

    // Path=path
    if (cookie.getPath() != null) {
        buf.append (";Path=");
        maybeQuote (version, buf, cookie.getPath());
    }

    // Secure
    if (cookie.getSecure()) {
      buf.append (";Secure");
    }
}
 
开发者ID:c-rainstorm,项目名称:jerrydog,代码行数:68,代码来源:CookieTools.java


注:本文中的javax.servlet.http.Cookie.getComment方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。