• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java SetCookie类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.http.cookie.SetCookie的典型用法代码示例。如果您正苦于以下问题:Java SetCookie类的具体用法?Java SetCookie怎么用?Java SetCookie使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



SetCookie类属于org.apache.http.cookie包,在下文中一共展示了SetCookie类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie version attribute.
 */
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null) {
        throw new MalformedCookieException(
                "Missing value for version attribute");
    }
    int version = -1;
    try {
        version = Integer.parseInt(value);
    } catch (NumberFormatException e) {
        version = -1;
    }
    if (version < 0) {
        throw new MalformedCookieException("Invalid cookie version.");
    }
    cookie.setVersion(version);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:24,代码来源:RFC2965VersionAttributeHandler.java


示例2: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null) {
        throw new MalformedCookieException("Missing value for max-age attribute");
    }
    int age;
    try {
        age = Integer.parseInt(value);
    } catch (NumberFormatException e) {
        throw new MalformedCookieException ("Invalid max-age attribute: "
                + value);
    }
    if (age < 0) {
        throw new MalformedCookieException ("Negative max-age attribute: "
                + value);
    }
    cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:22,代码来源:BasicMaxAgeHandler.java


示例3: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
public void parse(final SetCookie cookie, String domain)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().length() == 0) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    domain = domain.toLowerCase(Locale.ENGLISH);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute
        // MAY NOT be an IP address of a host name
        domain = '.' + domain;
    }
    cookie.setDomain(domain);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:28,代码来源:RFC2965DomainAttributeHandler.java


示例4: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null) {
        throw new MalformedCookieException("Missing value for version attribute");
    }
    if (value.trim().length() == 0) {
        throw new MalformedCookieException("Blank value for version attribute");
    }
    try {
       cookie.setVersion(Integer.parseInt(value));
    } catch (NumberFormatException e) {
        throw new MalformedCookieException("Invalid version: "
            + e.getMessage());
    }
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:19,代码来源:RFC2109VersionHandler.java


示例5: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie version attribute.
 */
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException(
                "Missing value for version attribute");
    }
    int version = -1;
    try {
        version = Integer.parseInt(value);
    } catch (final NumberFormatException e) {
        version = -1;
    }
    if (version < 0) {
        throw new MalformedCookieException("Invalid cookie version.");
    }
    cookie.setVersion(version);
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:22,代码来源:RFC2965VersionAttributeHandlerHC4.java


示例6: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
public void parse(
        final SetCookie cookie, final String domain) throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().length() == 0) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    String s = domain;
    s = s.toLowerCase(Locale.ENGLISH);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute
        // MAY NOT be an IP address of a host name
        s = '.' + s;
    }
    cookie.setDomain(s);
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:27,代码来源:RFC2965DomainAttributeHandlerHC4.java


示例7: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException("Missing value for version attribute");
    }
    if (value.trim().length() == 0) {
        throw new MalformedCookieException("Blank value for version attribute");
    }
    try {
       cookie.setVersion(Integer.parseInt(value));
    } catch (final NumberFormatException e) {
        throw new MalformedCookieException("Invalid version: "
            + e.getMessage());
    }
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:17,代码来源:RFC2109VersionHandlerHC4.java


示例8: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException("Missing value for max-age attribute");
    }
    final int age;
    try {
        age = Integer.parseInt(value);
    } catch (final NumberFormatException e) {
        throw new MalformedCookieException ("Invalid max-age attribute: "
                + value);
    }
    if (age < 0) {
        throw new MalformedCookieException ("Negative max-age attribute: "
                + value);
    }
    cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
}
 
开发者ID:xxonehjh,项目名称:remote-files-sync,代码行数:20,代码来源:BasicMaxAgeHandlerHC4.java


示例9: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie version attribute.
 */
@Override
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException("Missing value for version attribute");
    }
    int version = 0;
    try {
        version = Integer.parseInt(value);
    } catch (final NumberFormatException e) {
        // Just ignore invalid versions
    }
    cookie.setVersion(version);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:19,代码来源:BrowserCompatVersionAttributeHandler.java


示例10: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie version attribute.
 */
@Override
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException(
                "Missing value for version attribute");
    }
    int version = -1;
    try {
        version = Integer.parseInt(value);
    } catch (final NumberFormatException e) {
        version = -1;
    }
    if (version < 0) {
        throw new MalformedCookieException("Invalid cookie version.");
    }
    cookie.setVersion(version);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:23,代码来源:RFC2965VersionAttributeHandler.java


示例11: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
@Override
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException("Missing value for 'max-age' attribute");
    }
    final int age;
    try {
        age = Integer.parseInt(value);
    } catch (final NumberFormatException e) {
        throw new MalformedCookieException ("Invalid 'max-age' attribute: "
                + value);
    }
    if (age < 0) {
        throw new MalformedCookieException ("Negative 'max-age' attribute: "
                + value);
    }
    cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:21,代码来源:BasicMaxAgeHandler.java


示例12: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
@Override
public void parse(
        final SetCookie cookie, final String domain) throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().isEmpty()) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    String s = domain;
    s = s.toLowerCase(Locale.ROOT);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute
        // MAY NOT be an IP address of a host name
        s = '.' + s;
    }
    cookie.setDomain(s);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:28,代码来源:RFC2965DomainAttributeHandler.java


示例13: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
@Override
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (value == null) {
        throw new MalformedCookieException("Missing value for version attribute");
    }
    if (value.trim().isEmpty()) {
        throw new MalformedCookieException("Blank value for version attribute");
    }
    try {
       cookie.setVersion(Integer.parseInt(value));
    } catch (final NumberFormatException e) {
        throw new MalformedCookieException("Invalid version: "
            + e.getMessage());
    }
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:18,代码来源:RFC2109VersionHandler.java


示例14: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
@Override
public void parse(final SetCookie cookie, final String value)
        throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (TextUtils.isBlank(value)) {
        throw new MalformedCookieException("Blank or null value for domain attribute");
    }
    // Ignore domain attributes ending with '.' per RFC 6265, 4.1.2.3
    if (value.endsWith(".")) {
        return;
    }
    String domain = value;
    if (domain.startsWith(".")) {
        domain = domain.substring(1);
    }
    domain = domain.toLowerCase(Locale.ROOT);
    cookie.setDomain(domain);
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:19,代码来源:BasicDomainHandler.java


示例15: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
@Override
public void parse(final SetCookie cookie, final String value) throws MalformedCookieException {
    Args.notNull(cookie, "Cookie");
    if (TextUtils.isBlank(value)) {
        return;
    }
    final Matcher matcher = MAX_AGE_PATTERN.matcher(value);
    if (matcher.matches()) {
        final int age;
        try {
            age = Integer.parseInt(value);
        } catch (final NumberFormatException e) {
            return;
        }
        final Date expiryDate = age >= 0 ? new Date(System.currentTimeMillis() + age * 1000L) :
                new Date(Long.MIN_VALUE);
        cookie.setExpiryDate(expiryDate);
    }
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:20,代码来源:LaxMaxAgeHandler.java


示例16: testParseCookieMaxAgeOverExpires

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
@Test
public void testParseCookieMaxAgeOverExpires() throws Exception {
    final CommonCookieAttributeHandler h1 = Mockito.mock(CommonCookieAttributeHandler.class);
    Mockito.when(h1.getAttributeName()).thenReturn("Expires");
    final CommonCookieAttributeHandler h2 = Mockito.mock(CommonCookieAttributeHandler.class);
    Mockito.when(h2.getAttributeName()).thenReturn("Max-Age");

    final RFC6265CookieSpec cookiespec = new RFC6265CookieSpec(h1, h2);

    final Header header = new BasicHeader("Set-Cookie", "name = value ; expires = stuff; max-age = otherstuff;");
    final CookieOrigin origin = new CookieOrigin("host", 80, "/path/", true);
    cookiespec.parse(header, origin);

    Mockito.verify(h1, Mockito.never()).parse(Mockito.<SetCookie>any(), Mockito.anyString());
    Mockito.verify(h2).parse(Mockito.<SetCookie>any(), Mockito.eq("otherstuff"));
}
 
开发者ID:MyPureCloud,项目名称:purecloud-iot,代码行数:17,代码来源:TestRFC6265CookieSpec.java


示例17: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
public void parse(final SetCookie cookie, final String value) 
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null) {
        throw new MalformedCookieException("Missing value for max-age attribute");
    }
    int age;
    try {
        age = Integer.parseInt(value);
    } catch (NumberFormatException e) {
        throw new MalformedCookieException ("Invalid max-age attribute: " 
                + value);
    }
    if (age < 0) {
        throw new MalformedCookieException ("Negative max-age attribute: " 
                + value);
    }
    cookie.setExpiryDate(new Date(System.currentTimeMillis() + age * 1000L));
}
 
开发者ID:tdopires,项目名称:cJUnit-mc626,代码行数:22,代码来源:BasicMaxAgeHandler.java


示例18: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
/**
 * Parse cookie domain attribute.
 */
public void parse(final SetCookie cookie, String domain)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (domain == null) {
        throw new MalformedCookieException(
                "Missing value for domain attribute");
    }
    if (domain.trim().length() == 0) {
        throw new MalformedCookieException(
                "Blank value for domain attribute");
    }
    domain = domain.toLowerCase(Locale.ENGLISH);
    if (!domain.startsWith(".")) {
        // Per RFC 2965 section 3.2.2
        // "... If an explicitly specified value does not start with
        // a dot, the user agent supplies a leading dot ..."
        // That effectively implies that the domain attribute 
        // MAY NOT be an IP address of a host name
        domain = '.' + domain;
    }
    cookie.setDomain(domain);
}
 
开发者ID:tdopires,项目名称:cJUnit-mc626,代码行数:28,代码来源:RFC2965DomainAttributeHandler.java


示例19: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
public void parse(final SetCookie cookie, final String value) 
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null) {
        throw new MalformedCookieException("Missing value for version attribute");
    }
    if (value.trim().length() == 0) {
        throw new MalformedCookieException("Blank value for version attribute");
    }
    try {
       cookie.setVersion(Integer.parseInt(value));
    } catch (NumberFormatException e) {
        throw new MalformedCookieException("Invalid version: " 
            + e.getMessage());
    }
}
 
开发者ID:tdopires,项目名称:cJUnit-mc626,代码行数:19,代码来源:RFC2109VersionHandler.java


示例20: parse

import org.apache.http.cookie.SetCookie; //导入依赖的package包/类
public void parse(final SetCookie cookie, String value)
        throws MalformedCookieException {
    if (cookie == null) {
        throw new IllegalArgumentException("Cookie may not be null");
    }
    if (value == null || value.trim().length() == 0) {
        value = "/";
    }
    cookie.setPath(value);
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:11,代码来源:BasicPathHandler.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java SWTBotEditor类代码示例发布时间:2022-05-23
下一篇:
Java TorConfigProxy类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap