About 9,010,000 results
Open links in new tab
  1. macos - How to install Java 8 on Mac - Stack Overflow

    Now when java 9 is out, running "brew cask install java" installs java 9. "brew cask install java8" wasn't working for me until I ran "brew tap caskroom/versions".

  2. How to find maximum value from a stream of Integer values in Java 8

    Feb 25, 2025 · I have a list of Integer values named list, and from the list.stream() I want the maximum value. What is the simplest way? Do I need a comparator?

  3. java 8 - Remove duplicate from List java8 - Stack Overflow

    Jul 31, 2017 · I have a class below, and wanted to remove duplicate person which contain same name, how to do by using Java8 Lambda, expected List contains p1, p3 from the below. Person: public …

  4. Remove duplicates from a list of objects based on property in Java 8

    Apr 16, 2015 · List<Employee> employee Can we remove duplicates from it based on id property of employee. I have seen posts removing duplicate strings form arraylist of string.

  5. java - Distinct by property - Stack Overflow

    In Java 8, how can I filter a collection using the Stream API by checking the distinctness of a property of each object? For example, I have a list of Person objects and I want to remove people wit...

  6. java - Javaで利用可能なメモリサイズのデフォルト値は? - スタック …

    Nov 26, 2014 · Java8以降:言及はありませんが、Metaspace領域の特性から考えると可能な限り Java8ではヒープメモリのPermanent領域が消えて、 代わりにネイティブメモリにMetaspace領域 …

  7. java - Converting string to date using java8 - Stack Overflow

    Jan 1, 2015 · I am trying to convert a string to date using java 8 to a certain format. Below is my code. Even after mentioning the format pattern as MM/dd/yyyy the output I am receiving is yyyy/DD/MM …

  8. Filter values only if not null using lambda in Java8

    Oct 1, 2015 · Filter values only if not null using lambda in Java8 Asked 10 years, 3 months ago Modified 1 year, 8 months ago Viewed 497k times

  9. minimum hibernate version compatible with java8 - Stack Overflow

    I have a terrible time trying to find out which is the minimum version of Hibernate that supports being run on a java8 JRE, where the user code will use java8 features. I found this bug, but it ta...

  10. Java 8 streams to find the duplicate elements - Stack Overflow

    Dec 28, 2014 · I am trying to list out duplicate elements in an integer list using Streams of JDK 8. For example: