Skip to content

Make Selenium Easy

And Keep It That Way

  • Home
  • Share
  • Toggle search form

How To Sort List In Ascending & Descending Order Using Java Stream API?

Posted on 03/21/2025 By admin

Stream API feature was introduced in Java 8 but it is still confusing for many and also many have not even used it a single time. I will try to explain Java Stream concepts with simple examples in Learn Stream API in Java with Examples series.

In this post, we will learn to Sort List In Ascending & Descending Order Using Java Stream API i.e. sorted() method.

If you want to learn from a video tutorial then please refer to the below video –

Java stream provides a method sorted() which can sort List in ascending and descending order without you to write any complex logic. By default sorting() method sorts the list in ascending order. If we want to sort in descending order we need to pass Comparator.reverseOrder() in sorted() method as a parameter.

package solveproblemswithsreams; import java.util.Arrays;
import java.util.Comparator;
import java.util.List;
import java.util.stream.Collectors; public class SortListUsingJavaStreamAPI { public static void main(String[] args) { List unsortedList = Arrays.asList(10,1,21,3,6,2); // Sorting in natural order or ascending order List sortedListAsc = unsortedList.stream() .sorted() .collect(Collectors.toList()); System.out.println("Before sorting : "+ unsortedList); System.out.println("After sorting : "+ sortedListAsc); // Sorting in descending order List sortedListDesc = unsortedList.stream() .sorted(Comparator.reverseOrder()) .collect(Collectors.toList()); System.out.println("Before sorting : "+ unsortedList); System.out.println("After sorting : "+ sortedListDesc); }
}
Before sorting : [10, 1, 21, 3, 6, 2]
After sorting  : [1, 2, 3, 6, 10, 21]
Before sorting : [10, 1, 21, 3, 6, 2]
After sorting  : [21, 10, 6, 3, 2, 1]

https://github.com/amod-mahajan/MSE_LearnJavaStreamsWithExamples.git

If you have any doubt, feel free to comment below.
If you like my posts, please like, comment, share and subscribe to my YouTube channel.
#ThanksForReading
#HappyLearning

Uncategorized

Post navigation

Previous Post: putIfAbsent() – A Method Of Map Interface In Java
Next Post: TestNG Tutorials 13: Can An Interface have TestNG Methods? If Yes, How To Execute Them?

Related Posts

REST Assured Tutorial 72 – How To Compare Part of JSON Objects and Arrays using JSONassert library Uncategorized
Method 2: getCssValue() : What, When and How to use? Uncategorized
OutPutInnerClass – Make Selenium Easy Uncategorized
How To Open Duplicate Tab In Chrome Browser – Selenium WebDriver Uncategorized
image – Make Selenium Easy Uncategorized
October 14, 2017 – Make Selenium Easy Uncategorized

Recent Posts

  • Getting Started with Selenium 4: What Is New and How to Upgrade from Selenium 3
  • Manual Testing
  • Baby Steps To Become Efficient Selenium-Java Automation Tester
  • Features of Selenium 4.0.0 Release – Java Binding
  • Part 1: Handling Drop-down Created Using SELECT Tag In Selenium

Recent Comments

No comments to show.

Archives

  • April 2026
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • April 2024
  • March 2024
  • February 2024
  • December 2023
  • October 2023
  • August 2023
  • November 2022
  • September 2022
  • August 2022
  • July 2022
  • May 2022
  • March 2022
  • October 2021
  • April 2021
  • March 2021
  • January 2021
  • December 2020
  • October 2020
  • September 2020
  • August 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • February 2020
  • January 2020
  • December 2019
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • May 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • January 2018

Categories

  • Getting Started
  • Uncategorized

Copyright © 2026 Make Selenium Easy.

Powered by PressBook Masonry Dark