How do I sort array values in descending order?
Category: java.util, viewed: 1509 time(s).
Here you'll find an example how to sort array's values and sort it in ascending or descending order.
package org.kodejava.example.util; import java.util.Arrays; import java.util.Collections; public class SortArrayWithOrder { public static void main(String[] args) { Integer[] points = new Integer[5]; points[0] = 94; points[1] = 53; points[2] = 70; points[3] = 44; points[4] = 64; // // Sort the points array, the default order is in ascending order. // [44, 53, 64, 70, 94] // Arrays.sort(points); System.out.println(Arrays.toString(points)); // // Sort the points array in descending order. // [94, 70, 64, 53, 44] // Arrays.sort(points, Collections.reverseOrder()); System.out.println(Arrays.toString(points)); } } |
Can't find what you are looking for? Join our FORUMS and ask some questions!
Related Examples
- How do I sort items of an ArrayList?
- How do I sort array values in case insensitive order?
- How do I convert milliseconds value to date?
- How do I split a string using Scanner class?
- How do I read file using Scanner class?
- How do I read / write data in Windows registry?
- How do I read user input from console using Scanner class?
- How do I use ResourceBundle for i18n?
- How do I convert time between timezone?
- How do I set a default Locale?