Skip to content

Instantly share code, notes, and snippets.

@xenogew
Created May 11, 2021 01:36
Show Gist options
  • Save xenogew/a00e6d399f22fe7444def8f2b5ab7129 to your computer and use it in GitHub Desktop.
Save xenogew/a00e6d399f22fe7444def8f2b5ab7129 to your computer and use it in GitHub Desktop.
Java one line of code using lambda for converting array to map
private Map<String, String> getCookies(String cookieHeader) {
return Arrays.stream(cookieHeader.split(";"))
.map(String::trim)
.collect(Collectors.toMap(e -> e.split("=")[0], e -> e.split("=")[1]));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment