如何将此简单的Java 8代码写入Java 7

发布于 2025-01-22 07:19:28 字数 333 浏览 0 评论 0原文

我正在尝试实现CSRF令牌,但是所有信息均使用Java 8+版本编程,因此我需要一些帮助在Java 6/7中重写此行:

tokencookie = arrays.stream.stream.ttpreeam(httpreq.getCookies) ()。filter(c - > c.getName()。等于(csrfcookieeppedname))。findfirst()。orelse(null);

中得到错误

实际上是从该行中获得的,我只会在: c - > c.getName()。等于(csrfcookiepredname)

I'm trying to implement a CSRF token, but all the info is programmed with Java 8+ version, so what I need is some help rewriting this line in Java 6/7:

tokenCookie = Arrays.stream(httpReq.getCookies()).filter(c -> c.getName().equals(csrfCookieExpectedName)).findFirst().orElse(null);

Actually from that line I'm only getting the error in:

c -> c.getName().equals(csrfCookieExpectedName)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

简美 2025-01-29 07:19:28

除了 @gio的答案外,您还可以尝试这样的for-each循环:

public Cookie getExpectedCookieName(Cookie[] cookies) {
    for (Cookie c : cookies) {
        if (c.getName().equals(csrfCookiesExpectedName)) {
            return c;
        }
    }
    return null;
}

并这样称呼:
tokencookie = getExpedcookiename(httpreq.getCookies());

In addition to @GIO's answer, you could try for-each loop like this:

public Cookie getExpectedCookieName(Cookie[] cookies) {
    for (Cookie c : cookies) {
        if (c.getName().equals(csrfCookiesExpectedName)) {
            return c;
        }
    }
    return null;
}

and call it like this :
tokenCookie = getExpectedCookieName(httpReq.getCookies());

夜深人未静 2025-01-29 07:19:28

可以使用非常简单的循环来转换这一点。您需要的是基本上检查数组的每个元素,请找到需要从循环退出的第一个匹配元素,如果没有元素匹配,则只需返回null;

public Cookie getExpectedCookieName() {

   for (int i = 0; i < httpReq.getCookies().length; i++) {
       if(httpReq.getCookies()[i].getName().equals(csrfCookiesExpectedName)) {
           return httpReq.getCookies()[i];
       }
   }

   return null;
}

This is can be converted using a pretty simple for loop. What you need is basically to check every single element of the array, find the first matching element that you need an exit from the loop, if no element matches then simply return null;

public Cookie getExpectedCookieName() {

   for (int i = 0; i < httpReq.getCookies().length; i++) {
       if(httpReq.getCookies()[i].getName().equals(csrfCookiesExpectedName)) {
           return httpReq.getCookies()[i];
       }
   }

   return null;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文