如何将此简单的Java 8代码写入Java 7
我正在尝试实现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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了 @gio的答案外,您还可以尝试这样的for-each循环:
并这样称呼:
tokencookie = getExpedcookiename(httpreq.getCookies());
In addition to @GIO's answer, you could try for-each loop like this:
and call it like this :
tokenCookie = getExpectedCookieName(httpReq.getCookies());
可以使用非常简单的循环来转换这一点。您需要的是基本上检查数组的每个元素,请找到需要从循环退出的第一个匹配元素,如果没有元素匹配,则只需返回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;