从java中的cookie读取电子邮件字符串

时间:2008-11-07 02:02:43

标签: java javascript email struts2 cookies

我的应用程序需要将用户电子邮件地址存储在Cookie中,以便我可以预先填充登录表单(username == email address)。我在JavaScript中设置了cookie值。如果我从JavaScript中读取它,我会得到foo@bar.com。如果我在Firefox的cookie查看器中查看它,我会得到foo@bar.com

当我尝试用Java在服务器端读取它时,我只得到foo

我需要在这里进行某种编码/解码吗?如果是这样,我如何以可以通过JavaScript和Java解码的方式来实现?

提前致谢! -Michael

4 个答案:

答案 0 :(得分:4)

来自javax.servlet.http.Cookie doco for setValue(String):

  

之后为cookie分配一个新值   cookie已创建。如果你使用   二进制值,您可能想要使用   BASE64编码。

     

使用版本0   cookie,值不应包含   白色空间,括号,括号,   等于标志,逗号,双引号,   斜线,问号, 标志 ,   冒号和分号。空值   对所有人来说可能行为不一样   浏览器。

我猜你需要BASE64在(通过JavaScript)和出路(通过Java)的方式编码它

答案 1 :(得分:0)

您需要转义Cookie的值部分。

document.cookie = name + "=" +escape( value ) 
    + ( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" )
    + ( ( path ) ? ";path=" + path : "" ) 
    + ( ( domain ) ? ";domain=" + domain : "" ) 
    + ( ( secure ) ? ";secure" : "" );

答案 2 :(得分:0)

我找到了两个解决方案。这是第一个。

在填充中添加回Base64编码的字符串。对此的启示来自http://fi.am/entry/urlsafe-base64-encodingdecoding-in-two-lines/

在此解决方案中,JavaScript保持不变(base64编码所有内容),服务器端看起来像:

public class CookieDecoder {

private static final Log log = LogFactory.getLog(CookieDecoder.class);

/**
 * @param cookieValue The value of the cookie to decode
 * @return Returns the decoded string
 */
public String decode(String cookieValue) {
    if (cookieValue == null || "".equals(cookieValue)) {
        return null;
    }
    if (!cookieValue.endsWith("=")) {
        cookieValue = padString(cookieValue);
    }
    if (log.isDebugEnabled()) {
        log.debug("Decoding string: " + cookieValue);
    }
    Base64 base64 = new Base64();
    byte[] encodedBytes = cookieValue.getBytes();
    byte[] decodedBytes = base64.decode(encodedBytes);
    String result = new String(decodedBytes);
    if (log.isDebugEnabled()) {
        log.debug("Decoded string to: " + result);
    }
    return result;
}

private String padString(String value) {
    int mod = value.length() % 4;
    if (mod <= 0) {
        return value;
    }
    int numEqs = 4 - mod;
    if (log.isDebugEnabled()) {
        log.debug("Padding value with " + numEqs + " = signs");
    }
    for (int i = 0; i < numEqs; i++) {
        value += "=";
    }
    return value;
}
}

在JavaScript方面,您只需要确保base64编码值:

var encodedValue = this.base64.encode(value);
document.cookie = name + "=" + encodedValue + 
                  "; expires=" + this.expires.toGMTString() + 
                  "; path=" + this.path;

答案 3 :(得分:0)

第二个解决方案就是对Base64编码的字符串进行URLEncode。我在这里使用commons编解码器进行编码。 Java代码:

public class CookieDecoder {

    private static final Log log = LogFactory.getLog(CookieDecoder.class);

    /**
     * @param cookieValue The value of the cookie to decode
     * @return Returns the decoded string
     */
    public String decode(String cookieValue) {
        if (cookieValue == null || "".equals(cookieValue)) {
            return null;
        }
        if (log.isDebugEnabled()) {
            log.debug("Decoding string: " + cookieValue);
        }
        URLCodec urlCodec = new URLCodec();
        String b64Str;
        try {
            b64Str = urlCodec.decode(cookieValue);
        }
        catch (DecoderException e) {
            log.error("Error decoding string: " + cookieValue);
            return null;
        }
        Base64 base64 = new Base64();
        byte[] encodedBytes = b64Str.getBytes();
        byte[] decodedBytes = base64.decode(encodedBytes);
        String result = new String(decodedBytes);
        if (log.isDebugEnabled()) {
            log.debug("Decoded string to: " + result);
        }
        return result;
    }
}

但现在我必须在JavaScript端解码它... 编码:

var encodedValue = this.base64.encode(value);
document.cookie = name + "=" + escape(encodedValue) + 
                  "; expires=" + this.expires.toGMTString() + 
                  "; path=" + this.path;

解码:

var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i = 0; i < ca.length; i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') {
        c = c.substring(1,c.length);
    }
    if (c.indexOf(nameEQ) == 0) {
        var encodedValue = c.substring(nameEQ.length,c.length);
        return this.base64.decode(unescape(encodedValue));
    }
}
return null;